Skip to content

Commit

Permalink
The previous commit, but better
Browse files Browse the repository at this point in the history
  • Loading branch information
ararslan committed Sep 7, 2018
1 parent 77de468 commit 1333be7
Showing 1 changed file with 14 additions and 5 deletions.
19 changes: 14 additions & 5 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,19 @@ julia:
- nightly
notifications:
email: false
allow_failures:
julia:
- nightly
before_script:
- if [ $(uname) = "Linux" ]; then alias julia="xvfb-run $(which julia)"; fi
matrix:
allow_failures:
julia:
- 1.0
- nightly
script:
- if [[ -a .git/shallow ]]; then git fetch --unshallow; fi
- julia -e 'using Pkg; Pkg.clone(pwd())'
- |
if [ $(uname) = "Linux" ]; then
xvfb-run julia -e 'using Pkg; Pkg.build("Tk"); Pkg.test("Tk", coverage=true)'
else
julia -e 'using Pkg; Pkg.build("Tk"); Pkg.test("Tk", coverage=true)'
fi
after_success:
- julia -e 'using Pkg; Pkg.add("Coverage"); using Coverage; Coveralls.submit(Coveralls.process_folder())';

0 comments on commit 1333be7

Please sign in to comment.