forked from kaskr/adcomp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.travis.yml
90 lines (73 loc) · 1.66 KB
/
.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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
language: r
sudo: false
cache: packages
dist: xenial
os:
- linux
jobs:
include:
- stage: Install package dependencies
r: 3.1
install:
- ./bin/install_dependencies.sh
script: true
- stage: Install package dependencies
r: release
install:
- ./bin/install_dependencies.sh
script: true
- stage: Install and check the package
r: 3.1
install: true
script:
- ./bin/install_and_check.sh
- stage: Install and check the package
r: release
install: true
script:
- ./bin/install_and_check.sh
- stage: Run more checks
r: 3.1
install: true
script:
- ./bin/run_more_checks.sh
- stage: Run more checks
r: release
install: true
script:
- ./bin/run_more_checks.sh
- stage: Run full example suite
r: 3.1
install: true
script:
- ./bin/run_full_example_suite.sh
- stage: Run full example suite
r: release
install: true
script:
- ./bin/run_full_example_suite.sh
- stage: Build and deploy documentation
r: release
install:
- wget http://www.student.dtu.dk/~kaskr/doxygen-1.8.12.linux.bin.tar.gz
- tar zxf doxygen-1.8.12.linux.bin.tar.gz
- export PATH=`pwd`/doxygen-1.8.12/bin:$PATH
- doxygen -v
script:
- make doxygen
- ./bin/deploy.sh
notifications:
email:
on_success: never
on_failure: never
addons:
apt:
packages:
## - doxygen
- pandoc
- graphviz
- librsvg2-dev
env:
global:
- ENCRYPTION_LABEL: "52ee1037b843"
- COMMIT_AUTHOR_EMAIL: "[email protected]"