Skip to content

Commit 7ae3202

Browse files
authored
Merge pull request #81 from FourierFlows/TowardsJulia1.0
Towards Julia v1.0
2 parents 804d308 + 8f709b5 commit 7ae3202

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

43 files changed

+899
-497
lines changed

.travis.yml

Lines changed: 16 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -5,30 +5,28 @@ os:
55
- linux
66

77
julia:
8-
# - nightly
9-
- 0.6.3
8+
- 0.7
9+
- 1.0
10+
- nightly
11+
12+
matrix:
13+
allow_failures:
14+
- julia: 1.0
15+
- julia: nightly
1016

1117
before_script:
12-
- julia -e 'Pkg.add("JLD2"); Pkg.add("SpecialFunctions"); Pkg.add("CuArrays");'
13-
- julia -e 'Pkg.add("Interpolations"); Pkg.add("Requires");'
14-
# - julia -e 'ENV["PYTHON"]=""; Pkg.build("PyCall"); using PyPlot;'
18+
- julia -e 'using Pkg; Pkg.add("JLD2"); Pkg.add("SpecialFunctions"); Pkg.add("CuArrays");'
19+
- julia -e 'using Pkg; Pkg.add("Interpolations"); Pkg.add("Requires");'
20+
- julia -e 'using Pkg; Pkg.add("FFTW");'
1521

16-
# this was the old way of running tests before runtests.jl
1722
# script:
18-
# - julia test/test_grid.jl
19-
# - julia test/test_twodturb.jl
20-
# - julia test/test_utils.jl
21-
22-
script:
23-
- if [[ -a .git/shallow ]]; then git fetch --unshallow; fi
24-
- julia -e 'Pkg.clone(pwd())'
25-
- julia -e 'Pkg.test("FourierFlows",coverage=true)'
23+
# - if [[ -a .git/shallow ]]; then git fetch --unshallow; fi
24+
# - julia -e 'using Pkg; Pkg.test("FourierFlows", coverage=true)'
2625

2726
after_success:
28-
- julia -e 'Pkg.add("Documenter")'
29-
- julia -e 'cd(Pkg.dir("FourierFlows")); include(joinpath("docs", "make.jl"))'
30-
- julia -e 'cd(Pkg.dir("FourierFlows")); Pkg.add("Coverage"); using Coverage; Codecov.submit(Codecov.process_folder())'
31-
- julia -e 'cd(Pkg.dir("FourierFlows")); Pkg.add("Coverage"); using Coverage; Coveralls.submit(process_folder())'
27+
- julia -e 'using Pkg; Pkg.add("Documenter")'
28+
- julia -e 'using Pkg; Pkg.add("Documenter"); Pkg.dir("FourierFlows"); include(joinpath("docs", "make.jl"))'
29+
- julia -e 'using Pkg; Pkg.add("Coverage"); Pkg.dir("FourierFlows"); using Coverage; Coveralls.submit(Coveralls.process_folder())'
3230

3331
notifications:
3432
email: true

0 commit comments

Comments
 (0)