From: Andrew Cooper Date: Wed, 27 Apr 2016 16:10:57 +0000 (+0100) Subject: travis: Remove clang-3.8 build X-Git-Tag: archive/raspbian/4.8.0-1+rpi1~1^2~1217 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=81aa61195c8f670a24e105f25832a8f9006ee800;p=xen.git travis: Remove clang-3.8 build The package appears to have been renamed in Ubuntu. The only reason this test is currently passing is because the hypervisor build falls back to clang, at version 3.5 Add an explicit test in the build script that out desired compiler is available. Note that travis already performs this step, but in a way which isn't fatal to the build. Signed-off-by: Andrew Cooper Reviewed-by: Wei Liu Release-acked-by: Wei Liu Acked-by Doug Goldstein --- diff --git a/.travis.yml b/.travis.yml index 0eea94e114..d2e1bec0d9 100644 --- a/.travis.yml +++ b/.travis.yml @@ -22,12 +22,8 @@ matrix: env: XEN_TARGET_ARCH=x86_64 debug=y - compiler: clang env: XEN_TARGET_ARCH=x86_64 clang=y debug=n - - compiler: clang-3.8 - env: XEN_TARGET_ARCH=x86_64 clang=y debug=n - compiler: clang env: XEN_TARGET_ARCH=x86_64 clang=y debug=y - - compiler: clang-3.8 - env: XEN_TARGET_ARCH=x86_64 clang=y debug=y - compiler: gcc env: XEN_TARGET_ARCH=arm32 CROSS_COMPILE=arm-linux-gnueabihf- debug=n - compiler: gcc diff --git a/scripts/travis-build b/scripts/travis-build index b553f20a71..9a5c1c85bf 100755 --- a/scripts/travis-build +++ b/scripts/travis-build @@ -1,5 +1,7 @@ #!/bin/bash -ex +$CC --version + # random config or default config if [[ "${RANDCONFIG}" == "y" ]]; then make -C xen randconfig