File tree Expand file tree Collapse file tree 1 file changed +9
-6
lines changed Expand file tree Collapse file tree 1 file changed +9
-6
lines changed Original file line number Diff line number Diff line change
1
+ # # Documentation: http://docs.travis-ci.com/user/languages/julia/
1
2
language : julia
2
3
os :
3
- - linux
4
- - osx
4
+ - linux
5
+ - osx
5
6
julia :
6
- - 0.6
7
- - nightly
7
+ - 0.6
8
+ - nightly
8
9
notifications :
9
10
email : false
10
11
git :
11
12
depth : 99999999
12
13
14
+ # # uncomment the following lines to allow failures on nightly julia
15
+ # # (tests will run but not make your overall status red)
13
16
matrix :
14
17
allow_failures :
15
- julia : nightly
18
+ - julia : nightly
16
19
17
20
# uncomment the following lines to override the default test script
18
21
script :
19
22
- if [[ -a .git/shallow ]]; then git fetch --unshallow; fi
20
- - julia -e 'if VERSION < v"0.7.0-DEV" ; Pkg.add("Compat") ; Pkg.clone(pwd()) ; else ; using Pkg ; Pkg.add("Compat") ; Pkg.add (pwd()) ; end ; Pkg.build("Format"); Pkg.test("Format"; coverage=true)'
23
+ - julia -e 'f = VERSION < v"0.7.0-DEV" ; f || (using Pkg) ; const clone = ifelse(f, Pkg.clone, Pkg.add) ; Pkg.add("Compat") ; clone (pwd()) ; Pkg.build("Format"); Pkg.test("Format"; coverage=true)'
21
24
after_success :
22
25
# push coverage results to Coveralls
23
26
- julia -e 'cd(Pkg.dir("Format")); Pkg.add("Coverage"); using Coverage; Coveralls.submit(Coveralls.process_folder())'
You can’t perform that action at this time.
0 commit comments