Skip to content

Commit

Permalink
Merge pull request #37 from NHDaly/julia1.0
Browse files Browse the repository at this point in the history
Update .travis.yml for minimum julia 1.0 version requirement
  • Loading branch information
NHDaly authored Nov 26, 2018
2 parents e9bafd3 + 9f7b0f3 commit 77d8cb0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 5 deletions.
6 changes: 2 additions & 4 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,6 @@ os:
#- linux # TODO: Enable Linux

julia:
- 0.6
- 0.7
- 1.0
- nightly

Expand All @@ -25,5 +23,5 @@ notifications:
# - julia -e 'Pkg.clone(pwd()); Pkg.build("Example"); Pkg.test("Example"; coverage=true)';

after_success:
- julia -e 'if VERSION >= v"0.7.0-" using Pkg end; cd(Pkg.dir("Example")); Pkg.add("Coverage"); using Coverage; Coveralls.submit(Coveralls.process_folder())';
# - julia -e 'if VERSION >= v"0.7.0-" using Pkg end; cd(Pkg.dir("Example")); Pkg.add("Coverage"); using Coverage; Codecov.submit(Codecov.process_folder())';
- julia -e 'using Pkg; Pkg.add("Coverage"); using Coverage; Coveralls.submit(Coveralls.process_folder())';
# - julia -e 'using Pkg; Pkg.add("Coverage"); using Coverage; Codecov.submit(Codecov.process_folder())';
1 change: 0 additions & 1 deletion test/ApplicationBuilder.jl
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,6 @@ function testRunAndKillProgramSucceeds(cmd, timeout=10)
process_exited(p) && (println("Test Failed: Process died: \n", read(p.out, String)); return false)
# Manually kill program after it's been running for a bit.
kill(p); sleep(1)
process_exited(p) || (println("Test Failed: Process failed to exit: \n", read(p.out, String)); return false)
return true
end

Expand Down

0 comments on commit 77d8cb0

Please sign in to comment.