From 870b63169c782ef0cc52687397e5b9a7125a61b0 Mon Sep 17 00:00:00 2001 From: David Gibson Date: Mon, 16 Jan 2017 16:10:47 +1100 Subject: [PATCH] .travis.yml: Add builds under Ubuntu Trusty At the moment our Travis builds all use Travis's default Ubuntu Precise base distro. For wider testing, add a build using their Ubuntu Trusty distro. Only build with gcc there, for now, since clang will cause ccanlint failures, due to the gcov version there not being suitable for clang output. Signed-off-by: David Gibson --- .travis.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.travis.yml b/.travis.yml index aaf5b02a..83866f96 100644 --- a/.travis.yml +++ b/.travis.yml @@ -6,6 +6,9 @@ matrix: - compiler: gcc env: CFLAGS="-std=gnu99" - compiler: clang + - dist: trusty + env: CFLAGS="-std=gnu99" + compiler: gcc script: - make -j2 -k quiet=1 -- 2.39.2