diff options
author | Jan Vesely <[email protected]> | 2018-05-22 18:36:32 -0400 |
---|---|---|
committer | Jan Vesely <[email protected]> | 2018-05-29 17:36:16 -0400 |
commit | ed834aefa2dc078f1b73659934081d4214e2b338 (patch) | |
tree | 06f1b093d5c52186d0677f4d6a6119a69912f6fc /.travis.yml | |
parent | 41b878e1bd9e6215f57722d61b158f6b428a0d78 (diff) |
travis: Add clover llvm-6.0 build
v2: Don't force build using gcc-4.8
Signed-off-by: Jan Vesely <[email protected]>
Reviewed-By: Aaron Watry <[email protected]>
Diffstat (limited to '.travis.yml')
-rw-r--r-- | .travis.yml | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/.travis.yml b/.travis.yml index e3471d47ac2..d05c40bf9d7 100644 --- a/.travis.yml +++ b/.travis.yml @@ -291,6 +291,39 @@ matrix: - libelf-dev - libunwind8-dev - env: + # NOTE: Analogous to SWR above, building Clover is quite slow. + - LABEL="make Gallium ST Clover LLVM-6.0" + - BUILD=make + - MAKEFLAGS="-j4" + - MAKE_CHECK_COMMAND="true" + - LLVM_VERSION=6.0 + - LLVM_CONFIG="llvm-config-${LLVM_VERSION}" + - DRI_LOADERS="--disable-glx --disable-gbm --disable-egl" + - DRI_DRIVERS="" + - GALLIUM_ST="--disable-dri --enable-opencl --enable-opencl-icd --enable-llvm --disable-xa --disable-nine --disable-xvmc --disable-vdpau --disable-va --disable-omx-bellagio --disable-gallium-osmesa" + - GALLIUM_DRIVERS="r600,radeonsi" + - VULKAN_DRIVERS="" + - LIBUNWIND_FLAGS="--enable-libunwind" + addons: + apt: + sources: + - llvm-toolchain-trusty-6.0 + # llvm-6 depends on gcc-4.9 which is not in main repo + - ubuntu-toolchain-r-test + packages: + - libclc-dev + # From sources above + - llvm-6.0-dev + - clang-6.0 + - libclang-6.0-dev + # Common + - xz-utils + - x11proto-xf86vidmode-dev + - libexpat1-dev + - libx11-xcb-dev + - libelf-dev + - libunwind8-dev + - env: - LABEL="make Gallium ST Other" - BUILD=make - MAKEFLAGS="-j4" |