-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy path.travis.yml
103 lines (93 loc) · 2.37 KB
/
.travis.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
language: cpp
before_install:
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then
brew update;
brew upgrade cmake;
brew install cmake python3;
fi
- if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then
eval "${MATRIX_EVAL}";
DEPS_DIR="${TRAVIS_BUILD_DIR}/deps";
mkdir ${DEPS_DIR} && cd ${DEPS_DIR};
CMAKE_URL="https://cmake.org/files/v3.10/cmake-3.10.0-Linux-x86_64.tar.gz";
mkdir cmake && travis_retry wget --no-check-certificate --quiet -O - ${CMAKE_URL} | tar --strip-components=1 -xz -C cmake;
export PATH=${DEPS_DIR}/cmake/bin:${PATH};
cd ..;
fi
install:
- pip install --user conan
- conan user
- conan remote add bincrafters https://api.bintray.com/conan/bincrafters/public-conan
matrix:
include:
- os: osx
osx_image: xcode9.2
env:
- CONFIG=Release
- os: osx
osx_image: xcode9.2
env:
- CONFIG=Debug
- os: linux
dist: trusty
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- gcc-7
- g++-7
- python3
- python3-pip
env:
- MATRIX_EVAL="CC=gcc-7 && CXX=g++-7 && CONFIG=Debug"
- os: linux
dist: trusty
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- gcc-7
- g++-7
- python3
- python3-pip
env:
- MATRIX_EVAL="CC=gcc-7 && CXX=g++-7 && CONFIG=Release"
- os: linux
dist: trusty
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- gcc-8
- g++-8
- python3
- python3-pip
env:
- MATRIX_EVAL="CC=gcc-8 && CXX=g++-8 && CONFIG=Debug"
- os: linux
dist: trusty
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- gcc-8
- g++-8
- python3
- python3-pip
env:
- MATRIX_EVAL="CC=gcc-8 && CXX=g++-8 && CONFIG=Release"
script:
- mkdir build && cd build
- conan install .. --build missing -s build_type=Debug
- conan install .. --build missing -s build_type=Release
- cmake .. -DBUILD_TESTING=On
- cmake --build .
- ./bin/clamp_cast_tests
notifications:
email:
on_success: never
on_failure: always