-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy path.travis.yml
More file actions
74 lines (68 loc) · 1.46 KB
/
.travis.yml
File metadata and controls
74 lines (68 loc) · 1.46 KB
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
language: generic
git:
depth: 1
#addons:
# apt:
# update: false
# sources:
# - ubuntu-toolchain-r-test
# packages:
# - gcc
# - coreutils
# - diffutils
# - binutils
# - gcc-6
# - colordiff
env:
- CC=gcc
stages:
- simple
- full
jobs:
include:
- stage: simple
os: linux
name: "Some GNU/Linux"
script:
- '$CC --version'
- .scripts/travis/test_all.sh
- stage: full
os: osx
name: "Simple macOS"
install:
- .scripts/travis/install.sh
script:
- '$CC --version'
- .scripts/travis/test_all.sh
# - stage: full
# install:
# - .scripts/travis/install.sh
# script:
# - '$CC --version'
# - .scripts/travis/test_all.sh
# os: linux
# dist: xenial
# sudo: required
# name: "Xenial /GCC 8.1/ sanitized & with Intel MPX"
# env: CC=gcc-8 TEST_SANITIZE_MODE=gcc-8-mpx
# addons:
# apt:
# update: true
- stage: full
install:
- .scripts/travis/install.sh
script:
- '$CC --version'
- .scripts/travis/test_all.sh
os: linux
dist: xenial
name: "Xenial GCC 8 sanitized"
env: CC=gcc-8
addons:
apt:
update: true
sources:
- ubuntu-toolchain-r-test
packages:
- gcc-8
- binutils