Skip to content

Commit

Permalink
add Travis CI config
Browse files Browse the repository at this point in the history
  • Loading branch information
rschwarz committed Dec 20, 2018
1 parent 42bed2d commit f50bef4
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
## Documentation: http:https://docs.travis-ci.com/user/languages/julia/
language: julia
os:
- linux
julia:
- 1.0
- nightly
notifications:
email: false
git:
depth: 99999999
matrix:
allow_failures:
- julia: nightly
script:
- julia -e 'Pkg.clone(pwd()); Pkg.build("SCIP"); Pkg.test("SCIP"; coverage=true)'
after_success:
# push coverage results to Coveralls
- julia -e 'cd(Pkg.dir("SCIP")); Pkg.add("Coverage"); using Coverage; Coveralls.submit(Coveralls.process_folder())'
# push coverage results to Codecov
- julia -e 'cd(Pkg.dir("SCIP")); Pkg.add("Coverage"); using Coverage; Codecov.submit(Codecov.process_folder())'

0 comments on commit f50bef4

Please sign in to comment.