-
Notifications
You must be signed in to change notification settings - Fork 2
/
.travis.yml
85 lines (75 loc) · 1.59 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
language: cpp
# Only get the current repository state
git:
depth: false
# Test both clang and gcc
compiler:
- gcc
- clang
# Test both linux, and, osx
os:
- linux
- osx
osx_image: xcode12.2
# Install requirements with apt
addons:
apt:
packages:
- cmake
- libsfml-dev
homebrew:
packages:
- sfml
update: false
# Build Matrix
jobs:
fast_finish: true
include:
- os: windows
env: CMAKE_GENERATOR="Visual Studio 15 2017" VCPKG_DEFAULT_TRIPLET=x86-windows
cache:
- ccache
- directories:
- $LOCALAPPDATA/vcpkg/archives
- os: windows
env: CMAKE_GENERATOR="Visual Studio 15 2017 Win64" VCPKG_DEFAULT_TRIPLET=x64-windows
cache:
- ccache
- directories:
- $LOCALAPPDATA/vcpkg/archives
- stage: Coverage
os: linux
compiler:
- gcc
- clang
cache: false
before_script:
- pip install --user cpp-coveralls
- mkdir build && cd build
script:
- cmake -DCMAKE_BUILD_TYPE=Coverage ..
- cmake --build .
- ctest -C Coverage
- cd ..
after_success:
- coveralls -e "doc/" -E ".*test.*" -E ".*CMakeFiles.*"
before_install:
- |-
if test $TRAVIS_OS_NAME = "windows"; then
export VCPKG_ROOT="$HOME/vcpkg"
git clone https://github.com/microsoft/vcpkg ~/vcpkg
powershell ~/vcpkg/bootstrap-vcpkg.bat
fi
install:
- |-
case $TRAVIS_OS_NAME in
windows) $VCPKG_ROOT/vcpkg install sfml ;;
esac
before_script:
- cmake --version
- mkdir build && cd build
# Actually check if it works
script:
- cmake -DCMAKE_BUILD_TYPE=Debug ..
- VERBOSE=1 cmake --build .
- ctest -j2 -V -C Debug