-
-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy path.travis.yml
More file actions
46 lines (33 loc) · 615 Bytes
/
.travis.yml
File metadata and controls
46 lines (33 loc) · 615 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
36
37
38
39
40
41
42
43
44
45
language: c
os: linux
dist: trusty
cache:
directories:
- $HOME/cistore
compiler:
- gcc
branches:
only:
- master
before_script:
- chmod +x travis.linux.sh
- chmod +x travis.mac.sh
- chmod +x build.linux.sh
- chmod +x build.mac.sh
- chmod +x prereqs.sh
jobs:
allow_failures:
- os: osx
include:
- stage: build
script: ./travis.linux.sh
os: linux
dist: trusty
- stage: build
script: ./travis.mac.sh
osx_image: xcode12.2
os: osx
after_success:
- echo "Build and tests successful."
after_failure:
- echo "Build and tests failed."