Skip to content

Commit 3acea2d

Browse files
authored
Merge pull request #31 from omus/cv/1.0-compat
Test against Julia 1.0
2 parents 13db10b + 9ac5bce commit 3acea2d

File tree

2 files changed

+11
-4
lines changed

2 files changed

+11
-4
lines changed

.travis.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,16 @@ os:
66
julia:
77
- 0.6
88
- 0.7
9+
- 1.0
910
- nightly
1011
notifications:
1112
email: false
1213
matrix:
1314
fast_finish: true
1415
after_success:
15-
- julia -e 'cd(Pkg.dir("FilePaths")); Pkg.add("Coverage"); using Coverage; Codecov.submit(process_folder())'
16+
- |
17+
julia -e '
18+
VERSION >= v"0.7.0-DEV.3656" && using Pkg
19+
VERSION >= v"0.7.0-DEV.5183" || cd(Pkg.dir("FilePaths"))
20+
Pkg.add("Coverage"); using Coverage
21+
Codecov.submit(process_folder())'

appveyor.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ environment:
22
matrix:
33
- julia_version: 0.6
44
- julia_version: 0.7
5+
- julia_version: 1
56
- julia_version: latest
67

78
platform:
@@ -26,12 +27,12 @@ notifications:
2627
on_build_status_changed: false
2728

2829
install:
29-
- ps: iex ((new-object net.webclient).DownloadString('https://raw.githubusercontent.com/JuliaCI/Appveyor.jl/master/bin/install.ps1'))
30+
- ps: iex ((new-object net.webclient).DownloadString("https://raw.githubusercontent.com/JuliaCI/Appveyor.jl/version-1/bin/install.ps1"))
3031

3132
build_script:
3233
- echo "%JL_BUILD_SCRIPT%"
33-
- julia -e "%JL_BUILD_SCRIPT%"
34+
- C:\julia\bin\julia -e "%JL_BUILD_SCRIPT%"
3435

3536
test_script:
3637
- echo "%JL_TEST_SCRIPT%"
37-
- julia -e "%JL_TEST_SCRIPT%"
38+
- C:\julia\bin\julia -e "%JL_TEST_SCRIPT%"

0 commit comments

Comments
 (0)