-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.travis.yml
More file actions
35 lines (29 loc) · 814 Bytes
/
.travis.yml
File metadata and controls
35 lines (29 loc) · 814 Bytes
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
language: c
dist: xenial
# Build on pushes only to given branches
branches:
only:
- master
env:
global:
- CI_NODE_TOTAL=6
# Quickest to build, fast performing, debugable builds.
- CFLAGS="-g1 -O1"
- MAKEFLAGS=-j3
# Parallel jobs listed here; fastest jobs should come first to give
# feedback ASAP. For more info read this:
# https://docs.travis-ci.com/user/multi-os/
matrix:
include:
- os: linux
env: JOB_TYPE=compile_and_unit_test_asan
- os: linux
env: JOB_TYPE=compile_and_unit_test COVERAGE=no
compiler: clang
- os: osx
env: JOB_TYPE=compile_and_unit_test COVERAGE=no
before_install:
- chmod ug+x ./travis-scripts/*
- ./travis-scripts/before_install.sh
script: ./travis-scripts/script.sh
after_success: ./travis-scripts/after_success.sh