From 6df1811d9c7e591a4ad2ef37904988b74efa3a58 Mon Sep 17 00:00:00 2001 From: Olav Morken Date: Thu, 15 Aug 2019 07:33:29 +0200 Subject: [PATCH] Fix build on Travis CI Travis CI recently changed the default distribution from Ubuntu 14.04 (Trusty) to Ubuntu 18.04 (Xenial): https://blog.travis-ci.com/2019-04-15-xenial-default-build-environment This was a slow rollout, and does not appear to have reached this project until the last couple of weeks. This patch simply pins the distribution used for tests to Ubuntu 14.04 (Trusty), to ensure that we always use a consistent build environment. A later patch will update it to a more recent distribution. --- .travis.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.travis.yml b/.travis.yml index 1df18fa..563d688 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,3 +1,4 @@ +dist: trusty language: c env: - APACHE_PKG=apache2-prefork-dev