diff options
author | Andres Gomez <[email protected]> | 2018-03-05 17:25:36 +0200 |
---|---|---|
committer | Andres Gomez <[email protected]> | 2018-03-05 21:12:37 +0200 |
commit | 72552012c7b461b887c44b3f90e2744bc7512a74 (patch) | |
tree | 782c84e41e0b23fa05ce9064ce53d830ce5829d6 /.travis.yml | |
parent | 0472aa3efe325ba53dc25a20a541f18d30d31b0c (diff) |
travis: keep meson version below 0.45.0
Recently Meson upgraded to 0.45.0 and it needs python 3.5+, which is
not available in Trusty.
Cc: Eric Engestrom <[email protected]>
Cc: Dylan Baker <[email protected]>
Cc: Emil Velikov <[email protected]>
Cc: Jon Turney <[email protected]>
Signed-off-by: Andres Gomez <[email protected]>
Reviewed-by: Emil Velikov <[email protected]>
Reviewed-by: Eric Engestrom <[email protected]>
Reviewed-by: Dylan Baker <[email protected]>
Diffstat (limited to '.travis.yml')
-rw-r--r-- | .travis.yml | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/.travis.yml b/.travis.yml index 823111ca539..dcd150b482b 100644 --- a/.travis.yml +++ b/.travis.yml @@ -460,10 +460,11 @@ before_install: install: - pip2 install --user mako - # Install the latest meson from pip, since the version in the ubuntu repos is - # often quite old. + # Install a more modern meson from pip, since the version in the + # ubuntu repos is often quite old. Avoid >=0.45.0 as it needs python + # 3.5+ - if test "x$BUILD" = xmeson; then - pip3 install --user meson; + pip3 install --user "meson<0.45.0"; fi # Since libdrm gets updated in configure.ac regularly, try to pick up the |