File tree Expand file tree Collapse file tree 2 files changed +7
-27
lines changed Expand file tree Collapse file tree 2 files changed +7
-27
lines changed Original file line number Diff line number Diff line change 1
- # # Documentation: http://docs.travis-ci.com/user/languages/julia/
2
1
language : julia
3
2
os :
4
3
- linux
5
4
- osx
6
5
julia :
7
- - 0.7
6
+ - 1.0
7
+ - 1.1
8
8
- nightly
9
+ matrix :
10
+ allow_failures :
11
+ - julia : nightly
12
+ fast_finish : true
9
13
notifications :
10
14
email : false
11
- git :
12
- depth : 99999999
13
-
14
- # # uncomment the following lines to allow failures on nightly julia
15
- # # (tests will run but not make your overall status red)
16
- # matrix:
17
- # allow_failures:
18
- # - julia: nightly
19
-
20
- # # uncomment and modify the following lines to manually install system packages
21
- # addons:
22
- # apt: # apt-get for linux
23
- # packages:
24
- # - gfortran
25
- # before_script: # homebrew for mac
26
- # - if [ $TRAVIS_OS_NAME = osx ]; then brew install gcc; fi
27
-
28
- # # uncomment the following lines to override the default test script
29
- # script:
30
- # - julia -e 'Pkg.clone(pwd()); Pkg.build("UnicodeGraphics"); Pkg.test("UnicodeGraphics"; coverage=true)'
31
15
after_success :
32
- # push coverage results to Coveralls
33
- - julia -e 'cd(Pkg.dir("UnicodeGraphics")); Pkg.add("Coverage"); using Coverage; Coveralls.submit(Coveralls.process_folder())'
34
- # push coverage results to Codecov
35
- - julia -e 'cd(Pkg.dir("UnicodeGraphics")); Pkg.add("Coverage"); using Coverage; Codecov.submit(Codecov.process_folder())'
16
+ - julia -e 'using Pkg; Pkg.add("Coverage"); using Coverage; Codecov.submit(process_folder())'
Original file line number Diff line number Diff line change 1
1
environment :
2
2
matrix :
3
- - julia_version : 0.7
4
3
- julia_version : 1.0
5
4
- julia_version : latest
6
5
You can’t perform that action at this time.
0 commit comments