Skip to content

Commit

Permalink
allow nightly failures and precompile
Browse files Browse the repository at this point in the history
  • Loading branch information
ChrisRackauckas committed Dec 19, 2016
1 parent e2cc207 commit cd1e1db
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 5 deletions.
4 changes: 3 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,9 @@ os:
- osx
julia:
- 0.5
- nightly
matrix:
allow_failures:
- julia: nightly
notifications:
email: false
# uncomment the following lines to override the default test script
Expand Down
6 changes: 3 additions & 3 deletions appveyor.yml
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
environment:
matrix:
- JULIAVERSION: "julialang/bin/winnt/x64/0.5/julia-0.5-latest-win64.exe"
- JULIAVERSION: "julianightlies/bin/winnt/x64/julia-latest-win64.exe"

matrix:
allow_failures:
- JULIAVERSION: "julianightlies/bin/winnt/x64/julia-latest-win64.exe"
branches:
only:
- master
- /release-.*/

notifications:
- provider: Email
on_build_success: false
Expand Down
2 changes: 2 additions & 0 deletions src/StochasticDiffEq.jl
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
__precompile__()

module StochasticDiffEq

using DiffEqBase, Parameters, ChunkedArrays, RecursiveArrayTools, Juno,
Expand Down
2 changes: 1 addition & 1 deletion src/integrators/integrator_utils.jl
Original file line number Diff line number Diff line change
Expand Up @@ -269,7 +269,7 @@ end
@sde_savevalues
end
if progress_on && iter%progress_steps==0
msg(prog,progress_message(dt,t,u))
Juno.msg(prog,progress_message(dt,t,u))
Juno.progress(prog,t/T)
end
end
Expand Down

0 comments on commit cd1e1db

Please sign in to comment.