-
Notifications
You must be signed in to change notification settings - Fork 25
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Update .travis.yml #32
Conversation
include 1.0 and nightly in Travis (allowing for failures on nightly)
I'm not sure nightly is worth running right now. JuliaOpt has a shared queue for Travis (so this can slow down CI results for all repos), and we have a big enough job getting things running on 1.0 that I don't expect to look at the nightly results for a while. |
Do you think 1.0 should be allowed failure? |
Codecov Report
@@ Coverage Diff @@
## master #32 +/- ##
=========================================
- Coverage 48.13% 47.2% -0.94%
=========================================
Files 3 3
Lines 644 644
=========================================
- Hits 310 304 -6
- Misses 334 340 +6
Continue to review full report at Codecov.
|
If it's not passing right now, then yes :) |
.travis.yml
Outdated
# matrix: | ||
# allow_failures: | ||
# - julia: nightly | ||
|
||
notifications: | ||
email: false | ||
script: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The current failure on Julia v1.0 is due to this line and the two below. Just delete them
passing now |
This isn't testing anything on 1.0 at the moment: https://travis-ci.org/JuliaOpt/Clp.jl/jobs/421176547#L148. See @blegat's suggestion. |
The |
.travis.yml
Outdated
after_success: | ||
- julia -e 'cd(Pkg.dir("Clp")); Pkg.add("Coverage"); using Coverage; Codecov.submit(Codecov.process_folder())' | ||
- julia -e 'using Pkg; cd(Pkg.dir("Clp")); Pkg.add("Coverage"); using Coverage; Codecov.submit(Codecov.process_folder())' |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
You need to do using Compat; using Compat.Pkg
for it work on Julia v0.6
include 1.0 and nightly in Travis (allowing for failures on nightly)