-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
50 lines (39 loc) · 822 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
43
44
45
46
47
48
49
50
language: c
sudo: required
addons:
apt:
config:
retries: true
sources: &common_sources
- ubuntu-toolchain-r-test
packages: &common_packages
- gcc-8
- valgrind
matrix:
include:
- os: linux
compiler: gcc
dist: xenial
env: T=normal
- os: linux
compiler: clang
dist: xenial
env: T=normal
- os: osx
compiler: gcc
env: T=normal
- os: osx
compiler: clang
env: T=normal
before_install:
install:
before_script:
script:
- make
# whitelist branches to avoid testing feature branches twice (as branch and as pull request)
branches:
only:
- master
- /\/ci$/
notifications:
email: false