-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy path.travis.yml
42 lines (37 loc) · 844 Bytes
/
.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
language: c
matrix:
include:
- os: linux
dist: bionic
arch: arm64
compiler: gcc
env:
- buildtype=-DCMAKE_BUILD_TYPE=Release
- sanitizer=-DUSE_ASAN=ON
- os: linux
dist: focal
arch: arm64
compiler: gcc
env:
- buildtype=-DCMAKE_BUILD_TYPE=Release
- sanitizer=-DUSE_ASAN=ON
- os: linux
dist: focal
arch: arm64
compiler: clang
env:
- buildtype=-DCMAKE_BUILD_TYPE=Debug
- sanitizer=-DUSE_ASAN=ON
- os: linux
dist: focal
arch: arm64
compiler: clang
env:
- buildtype=-DCMAKE_BUILD_TYPE=Release
- sanitizer=-DUSE_ASAN=ON
script:
- mkdir build
- cd build
- cmake $toolchain $buildtype $sanitizer ..
- make VERBOSE=1
- if [ -z "$CROSS" ]; then make test; fi