Skip to content

Commit d570688

Browse files
committed
Fix travis
1 parent 40ee2a6 commit d570688

File tree

1 file changed

+10
-23
lines changed

1 file changed

+10
-23
lines changed

.travis.yml

Lines changed: 10 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -1,41 +1,28 @@
1-
## Documentation: http://docs.travis-ci.com/user/languages/julia/
21
language: julia
2+
33
os:
44
- linux
5-
- osx
5+
66
julia:
7-
- 0.7
8-
- 1.0
97
- nightly
8+
- 1.0
9+
- 1.2
10+
1011
notifications:
1112
email: false
12-
git:
13-
depth: 99999999
1413

15-
## uncomment the following lines to allow failures on nightly julia
16-
## (tests will run but not make your overall status red)
17-
matrix:
18-
allow_failures:
19-
- julia: nightly
14+
after_success:
15+
- julia -e 'using Pkg; Pkg.add("Coverage"); using Coverage; Coveralls.submit(Coveralls.process_folder())';
2016

21-
## uncomment and modify the following lines to manually install system packages
22-
#addons:
23-
# apt: # apt-get for linux
24-
# packages:
25-
# - gfortran
26-
#before_script: # homebrew for mac
27-
# - if [ $TRAVIS_OS_NAME = osx ]; then brew install gcc; fi
2817

29-
## uncomment the following lines to override the default test script
30-
#script:
31-
# - julia -e 'using Pkg; Pkg.clone("https://github.com/mschauer/DynamicIterators.jl"); Pkg.build("DynamicIterators"); Pkg.clone(pwd()); Pkg.build("Kalman"); Pkg.test("Kalman"; coverage=true)'
3218

3319

3420
jobs:
3521
include:
3622
- stage: "Documentation"
37-
julia: 1.0
38-
os: linux
23+
julia: 1.2
24+
os:
25+
- linux
3926
script:
4027
- julia --project=docs/ -e 'using Pkg; Pkg.instantiate();
4128
Pkg.develop(PackageSpec(path=pwd()))'

0 commit comments

Comments
 (0)