-
Notifications
You must be signed in to change notification settings - Fork 11
/
.travis.yml
65 lines (58 loc) · 1.32 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
## Documentation: http://docs.travis-ci.org/user/languages/julia/
language: julia
matrix:
include:
- os: linux
julia: 1.5
env: TESTCMD="xvfb-run julia"
- os: linux
julia: nightly
env: TESTCMD="xvfb-run julia"
- os: windows
julia: 1.5
- os: windows
julia: nightly
- os: osx
julia: 1.5
env: TESTCMD="julia"
- os: osx
julia: nightly
env: TESTCMD="julia"
allow_failures:
- os: windows
julia: 1.5
- os: windows
julia: nightly
- os: osx
julia: nightly
- os: linux
julia: nightly
## uncomment the following lines to allow failures on nightly julia
## (tests will run but not make your overall status red)
notifications:
email: false
## uncomment and modify the following lines to manually install system packages
#addons:
# apt: # apt-get for linux
# packages:
# - gfortran
#before_script: # homebrew for mac
# - if [ $TRAVIS_OS_NAME = osx ]; then brew install gcc; fi
addons:
apt:
packages:
- xvfb
install:
- export DISPLAY=':99.0'
- Xvfb :99 -screen 0 1024x768x24 > /dev/null 2>&1 &
jobs:
fast_finish: true
allow_failures:
- julia: nightly
- os: osx
- os: windows
after_success: julia -e '
using Pkg;
Pkg.add("Coverage");
using Coverage;
Codecov.submit(process_folder());'