[Mesa-dev] [PATCH] travis: Support LLVM 3.8+ on Trusty-based Travis-CI via apt-get not apt addon
Rhys Kidd
rhyskidd at gmail.com
Sun Apr 2 20:48:39 UTC 2017
Per comments by Travis-CI, the apt addon is only really needed for the
container-based Precise builds, as they don't yet support Trusty on that platform.
Mesa currently uses Trusty fully-virtualized environment (due to sudo: required).
See further:
https://docs.travis-ci.com/user/trusty-ci-environment/#Fully-virtualized-via-sudo%3A-required
https://github.com/travis-ci/apt-source-whitelist/pull/205#issuecomment-216054237
Signed-off-by: Rhys Kidd <rhyskidd at gmail.com>
---
.travis.yml | 20 +++++++++++++++-----
1 file changed, 15 insertions(+), 5 deletions(-)
diff --git a/.travis.yml b/.travis.yml
index a3b094f..aa212b1 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -1,6 +1,6 @@
language: c
-sudo: true
+sudo: required
dist: trusty
cache:
@@ -15,11 +15,9 @@ addons:
- libexpat1-dev
- libxcb-dri2-0-dev
- libx11-xcb-dev
- - llvm-3.5-dev
- # llvm-config is not in the dev package?
- - llvm-3.5
- # LLVM packaging is broken and misses this dep.
+ # LLVM packaging is broken and misses these dependencies
- libedit-dev
+ - libelf-dev
- scons
env:
@@ -36,6 +34,9 @@ env:
- XCBPROTO_VERSION=xcb-proto-1.11
- LIBXCB_VERSION=libxcb-1.11
- LIBXSHMFENCE_VERSION=libxshmfence-1.2
+ - LLVM_VERSION=3.9
+ - LLVM_PACKAGE="llvm-${LLVM_VERSION} llvm-${LLVM_VERSION}-dev"
+ - LLVM_CONFIG="llvm-config-${LLVM_VERSION}"
- PKG_CONFIG_PATH=$HOME/prefix/lib/pkgconfig
- MAKEFLAGS=-j2
matrix:
@@ -99,6 +100,15 @@ install:
- tar -jxvf $LIBXSHMFENCE_VERSION.tar.bz2
- (cd $LIBXSHMFENCE_VERSION && ./configure --prefix=$HOME/prefix && make install)
+ # Install LLVM directly via apt-get (not Travis-CI's apt addon)
+ # See https://github.com/travis-ci/apt-source-whitelist/pull/205#issuecomment-216054237
+
+ - wget -nv -O - http://llvm.org/apt/llvm-snapshot.gpg.key | sudo apt-key add -
+ - sudo apt-add-repository -y 'deb http://llvm.org/apt/trusty llvm-toolchain-trusty-3.9 main'
+ - sudo apt-add-repository -y 'deb http://llvm.org/apt/trusty llvm-toolchain-trusty main'
+ - sudo apt-get update -qq
+ - sudo apt-get install -qq -y $LLVM_PACKAGE
+
script:
- if test "x$BUILD" = xmake; then
./autogen.sh --enable-debug
--
2.9.3
More information about the mesa-dev
mailing list