From: Markus Armbruster Date: Sat, 26 Aug 2017 07:11:27 +0000 (+0200) Subject: travis: Specify dist to fix Linux build X-Git-Tag: v4.4.0~17 X-Git-Url: http://git.pond.sub.org/?p=empserver;a=commitdiff_plain;h=6ab4848cc7399a786f74cac8969c1b3bf8d2b534;hp=7c9c795c313ce3d85cfcc2add7e7d48fc2e0c638 travis: Specify dist to fix Linux build The build fails on Travis since we require autoconf 2.69 (commit db055a). Travis still defaults to Ubuntu Precise, and Precise's autoconf is too old. We could revert commit db055a and rely on Travis to keep things working with old autoconf. But Precise reached end of life a couple of months ago, and I suspect it's only a matter of time until Travis drops it, too. Fix the build on Travis by requesting Trusty. Its end of life is planned for April 2019. Signed-off-by: Markus Armbruster --- diff --git a/.travis.yml b/.travis.yml index c54c1f1ce..f595ab480 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,4 +1,6 @@ ## Travis CI configuration +dist: trusty +sudo: false language: c branches: only: @@ -6,7 +8,7 @@ branches: - fever - master - travis -# Test with both gcc and clang: +# Test matrix: compiler: - gcc - clang