File tree 3 files changed +5
-5
lines changed
3 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -6,14 +6,14 @@ addons:
6
6
sources :
7
7
- ubuntu-toolchain-r-test
8
8
packages :
9
- - g++-8
9
+ - g++-9
10
10
- lcov
11
11
12
12
matrix :
13
13
include :
14
14
- env : TEST="Build on macOS"
15
15
os : osx
16
- osx_image : xcode10.1
16
+ osx_image : xcode11.6
17
17
script : scripts/travis/build_macos.sh
18
18
- env : TEST="Build on Linux"
19
19
os : linux
Original file line number Diff line number Diff line change @@ -4,14 +4,14 @@ mkdir -p build/examples
4
4
cd build
5
5
6
6
# generate and build lib
7
- cmake -DCMAKE_BUILD_TYPE=Debug -DENABLE_TESTS=ON -DCMAKE_CXX_COMPILER=g++-8 -DCMAKE_INSTALL_PREFIX=~ /local ..
7
+ cmake -DCMAKE_BUILD_TYPE=Debug -DENABLE_TESTS=ON -DCMAKE_CXX_COMPILER=g++-9 -DCMAKE_INSTALL_PREFIX=~ /local ..
8
8
if [ $? -ne 0 ]; then exit -1; fi
9
9
cmake --build . --target install -- -j $( nproc)
10
10
if [ $? -ne 0 ]; then exit -1; fi
11
11
12
12
# generate and build examples
13
13
cd examples
14
- cmake -DCMAKE_BUILD_TYPE=Debug -DCMAKE_CXX_COMPILER=g++-8 -DCMAKE_INSTALL_PREFIX=~ /local ../../examples
14
+ cmake -DCMAKE_BUILD_TYPE=Debug -DCMAKE_CXX_COMPILER=g++-9 -DCMAKE_INSTALL_PREFIX=~ /local ../../examples
15
15
if [ $? -ne 0 ]; then exit -1; fi
16
16
cmake --build . -- -j $( nproc)
17
17
if [ $? -ne 0 ]; then exit -1; fi
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ mkdir -p build
4
4
cd build
5
5
6
6
# generate and build lib with coverage
7
- cmake -DCMAKE_BUILD_TYPE=Debug -DENABLE_TESTS=ON -DCMAKE_CXX_COMPILER=g++-8 -DENABLE_COVERAGE=ON ..
7
+ cmake -DCMAKE_BUILD_TYPE=Debug -DENABLE_TESTS=ON -DCMAKE_CXX_COMPILER=g++-9 -DENABLE_COVERAGE=ON ..
8
8
if [ $? -ne 0 ]; then exit -1; fi
9
9
cmake --build . -- -j $( nproc)
10
10
if [ $? -ne 0 ]; then exit -1; fi
You can’t perform that action at this time.
0 commit comments