File tree Expand file tree Collapse file tree 2 files changed +9
-7
lines changed Expand file tree Collapse file tree 2 files changed +9
-7
lines changed Original file line number Diff line number Diff line change @@ -54,7 +54,9 @@ matrix:
54
54
# QT5 based build with Python 3 // using container based builds and prebuild binary dependencies in osgeo4travis
55
55
- os : linux
56
56
language : python # This lets us use newer python versions from virtualenv
57
- env : QT_VERSION=5
57
+ env :
58
+ - QT_VERSION=5
59
+ - LLVM_VERSION=3.8
58
60
sudo : false
59
61
cache :
60
62
apt : true
@@ -66,7 +68,7 @@ matrix:
66
68
postgresql : " 9.4"
67
69
apt :
68
70
sources :
69
- - llvm-toolchain-precise-3.6
71
+ - llvm-toolchain-precise-3.8
70
72
- ubuntu-toolchain-r-test
71
73
- george-edison55-precise-backports # doxygen 1.8.3
72
74
packages :
@@ -81,7 +83,7 @@ matrix:
81
83
- txt2tags
82
84
- xvfb
83
85
- flip
84
- - clang-3.6
86
+ - clang-3.8
85
87
# OSX based build with QT4 and Python 2
86
88
- os : osx
87
89
Original file line number Diff line number Diff line change 1
1
mkdir build
2
2
cd build
3
3
4
- ln -s ${HOME} /osgeo4travis/bin/ccache ${HOME} /osgeo4travis/bin/clang++-3.6
5
- ln -s ${HOME} /osgeo4travis/bin/ccache ${HOME} /osgeo4travis/bin/clang-3.6
4
+ ln -s ${HOME} /osgeo4travis/bin/ccache ${HOME} /osgeo4travis/bin/clang++-${LLVM_VERSION}
5
+ ln -s ${HOME} /osgeo4travis/bin/ccache ${HOME} /osgeo4travis/bin/clang-${LLVM_VERSION}
6
6
7
7
ccache -s
8
8
9
- export CXX=" clang++-3.6 "
10
- export CC=" clang-3.6 "
9
+ export CXX=" clang++-${LLVM_VERSION} "
10
+ export CC=" clang-${LLVM_VERSION} "
11
11
export PATH=${HOME} /osgeo4travis/bin:${PATH}
12
12
export PYTHONPATH=${HOME} /osgeo4travis/lib/python3.3/site-packages/
13
13
You can’t perform that action at this time.
0 commit comments