From f8ee10ee9505ab44e823586bf5c4ae5b1044df87 Mon Sep 17 00:00:00 2001 From: Joel Stanley Date: Fri, 4 May 2018 16:06:50 +0930 Subject: opal-ci: Add Ubuntu 18.04 Start doing builds on latest LTS. We can simplify the build script a little, as we know that this version of Ubuntu ships with an ARM cross compiler and a Qemu that can run the tests. This provides us with: gcc 7.3.0 (for native and cross-builds) qemu 2.11 clang 6 Simplify the docker script a little by merging the two different install lines, and getting rid of the duplicate 'apt-get update' steps. We now install clang in preparation for future shenanigans, and use the system qemu instead of building one ourselves. Signed-off-by: Joel Stanley [stewart: allow 18.04 to fail as we stabilise it in travis] Signed-off-by: Stewart Smith --- .travis.yml | 2 ++ 1 file changed, 2 insertions(+) (limited to '.travis.yml') diff --git a/.travis.yml b/.travis.yml index c754c12..a855985 100644 --- a/.travis.yml +++ b/.travis.yml @@ -10,6 +10,7 @@ env: matrix: - RUN_ON_CONTAINER=ubuntu-12.04 - RUN_ON_CONTAINER=ubuntu-16.04 + - RUN_ON_CONTAINER=ubuntu-18.04 - RUN_ON_CONTAINER=ubuntu-latest - RUN_ON_CONTAINER=centos6 - RUN_ON_CONTAINER=centos7 @@ -26,6 +27,7 @@ matrix: allow_failures: - env: RUN_ON_CONTAINER=fedora-rawhide - env: RUN_ON_CONTAINER=debian-unstable + - env: RUN_ON_CONTAINER=ubuntu-18.04 exclude: - os: linux-ppc64le env: RUN_ON_CONTAINER=ubuntu-12.04 -- cgit v1.1