Skip to content

Commit 28a69cb

Browse files
authored
Merge pull request #35 from JuliaString/update
Update Travis
2 parents 28a9002 + 8a2e7e9 commit 28a69cb

File tree

1 file changed

+9
-6
lines changed

1 file changed

+9
-6
lines changed

.travis.yml

Lines changed: 9 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,26 @@
1+
## Documentation: http://docs.travis-ci.com/user/languages/julia/
12
language: julia
23
os:
3-
- linux
4-
- osx
4+
- linux
5+
- osx
56
julia:
6-
- 0.6
7-
- nightly
7+
- 0.6
8+
- nightly
89
notifications:
910
email: false
1011
git:
1112
depth: 99999999
1213

14+
## uncomment the following lines to allow failures on nightly julia
15+
## (tests will run but not make your overall status red)
1316
matrix:
1417
allow_failures:
15-
julia: nightly
18+
- julia: nightly
1619

1720
# uncomment the following lines to override the default test script
1821
script:
1922
- 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)'
2124
after_success:
2225
# push coverage results to Coveralls
2326
- julia -e 'cd(Pkg.dir("Format")); Pkg.add("Coverage"); using Coverage; Coveralls.submit(Coveralls.process_folder())'

0 commit comments

Comments
 (0)