Skip to content

Commit

Permalink
Merge pull request #39 from JuliaDSP/gfa/ci-fixes
Browse files Browse the repository at this point in the history
Update travis script
  • Loading branch information
gummif committed May 30, 2018
2 parents 13c903d + ec31103 commit 5ce86c1
Showing 1 changed file with 8 additions and 7 deletions.
15 changes: 8 additions & 7 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,13 +1,14 @@
language: julia
os:
- osx
- linux
julia:
#- v0.6
- 0.6
- nightly
matrix:
allow_failures:
- julia: nightly
notifications:
email: false
script:
- if [[ -a .git/shallow ]]; then git fetch --unshallow; fi
- julia -e 'Pkg.init(); Pkg.clone(pwd())'
- if [ $TRAVIS_JULIA_VERSION = "nightly" ]; then julia --check-bounds=yes --code-coverage test/runtests.jl; fi
- if [ $TRAVIS_JULIA_VERSION != "nightly" ]; then julia --check-bounds=yes test/runtests.jl; fi
after_success:
- if [ $TRAVIS_JULIA_VERSION = "nightly" ]; then julia -e 'cd(Pkg.dir("Wavelets")); Pkg.add("Coverage"); using Coverage; Coveralls.submit(Coveralls.process_folder())'; fi
- julia -e 'cd(Pkg.dir("Wavelets")); Pkg.add("Coverage"); using Coverage; Coveralls.submit(Coveralls.process_folder())'

0 comments on commit 5ce86c1

Please sign in to comment.