Skip to content

Commit 3a342cd

Browse files
committed
Update appveyor script
1 parent 024bce6 commit 3a342cd

File tree

1 file changed

+18
-12
lines changed

1 file changed

+18
-12
lines changed

appveyor.yml

Lines changed: 18 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,18 @@
11
environment:
22
matrix:
33
- julia_version: 0.6
4-
- julia_version: 1.0
5-
- julia_version: latest
4+
- julia_version: 1
5+
- julia_version: nightly
66

77
platform:
8-
- x86
9-
- x64
8+
- x86 # 32-bit
9+
- x64 # 64-bit
1010

11-
## uncomment the following lines to allow failures on nightly julia
12-
## (tests will run but not make your overall status red)
13-
#matrix:
14-
# allow_failures:
15-
# - julia_version: latest
11+
# # Uncomment the following lines to allow failures on nightly julia
12+
# # (tests will run but not make your overall status red)
13+
# matrix:
14+
# allow_failures:
15+
# - julia_version: nightly
1616

1717
branches:
1818
only:
@@ -26,12 +26,18 @@ notifications:
2626
on_build_status_changed: false
2727

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

3131
build_script:
3232
- echo "%JL_BUILD_SCRIPT%"
33-
- julia -e "%JL_BUILD_SCRIPT%"
33+
- C:\julia\bin\julia -e "%JL_BUILD_SCRIPT%"
3434

3535
test_script:
3636
- echo "%JL_TEST_SCRIPT%"
37-
- julia -e "%JL_TEST_SCRIPT%"
37+
- C:\julia\bin\julia -e "%JL_TEST_SCRIPT%"
38+
39+
# # Uncomment to support code coverage upload. Should only be enabled for packages
40+
# # which would have coverage gaps without running on Windows
41+
# on_success:
42+
# - echo "%JL_CODECOV_SCRIPT%"
43+
# - C:\julia\bin\julia -e "%JL_CODECOV_SCRIPT%"

0 commit comments

Comments
 (0)