-
Notifications
You must be signed in to change notification settings - Fork 2
/
.travis.yml
93 lines (84 loc) · 2.21 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
language: cpp
before_install:
- eval "${MATRIX_EVAL}"
- if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then
mkdir $HOME/usr;
export PATH="$HOME/usr/bin:$PATH";
wget https://cmake.org/files/v3.16/cmake-3.16.0-Linux-x86_64.sh;
chmod +x cmake-3.16.0-Linux-x86_64.sh;
./cmake-3.16.0-Linux-x86_64.sh --prefix=$HOME/usr --exclude-subdir --skip-license;
fi
install:
- if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then
pyenv global 3.7;
fi
- pip3 install conan
- conan user
- conan remote add bincrafters https://api.bintray.com/conan/conan/conan-center
- conan profile new default --detect
- if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then
conan profile update settings.compiler.libcxx=libstdc++11 default;
fi
matrix:
include:
- os: osx
osx_image: xcode11.2
env:
- MATRIX_EVAL="CC=clang && CXX=clang++ && CONFIG=Debug"
- os: osx
osx_image: xcode11.2
env:
- MATRIX_EVAL="CC=clang && CXX=clang++ && CONFIG=Release"
- os: linux
dist: bionic
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- gcc-7
- g++-7
env:
- MATRIX_EVAL="CC=gcc-7 && CXX=g++-7 && CONFIG=Debug"
- os: linux
dist: bionic
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- gcc-7
- g++-7
env:
- MATRIX_EVAL="CC=gcc-7 && CXX=g++-7 && CONFIG=Release"
- os: linux
dist: bionic
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- gcc-8
- g++-8
env:
- MATRIX_EVAL="CC=gcc-8 && CXX=g++-8 && CONFIG=Debug"
- os: linux
dist: bionic
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- gcc-8
- g++-8
env:
- MATRIX_EVAL="CC=gcc-8 && CXX=g++-8 && CONFIG=Release"
script:
- mkdir build && cd build
- cmake .. -DBUILD_TESTING=On -DCMAKE_BUILD_TYPE=$CONFIG
- cmake --build . --config $CONFIG
- ./bin/fea_state_machines_tests
notifications:
email:
on_success: never
on_failure: always