Skip to content

Commit f0ff376

Browse files
committed
added appveyor.yml
1 parent afebb4b commit f0ff376

File tree

1 file changed

+32
-0
lines changed

1 file changed

+32
-0
lines changed

.appveyor.yml

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
# Documentation: https://github.com/JuliaCI/Appveyor.jl
2+
environment:
3+
matrix:
4+
- julia_version: 1.0
5+
- julia_version: 1.2
6+
- julia_version: nightly
7+
platform:
8+
- x86
9+
- x64
10+
matrix:
11+
allow_failures:
12+
- julia_version: nightly
13+
branches:
14+
only:
15+
- master
16+
- /release-.*/
17+
notifications:
18+
- provider: Email
19+
on_build_success: false
20+
on_build_failure: false
21+
on_build_status_changed: false
22+
install:
23+
- ps: iex ((new-object net.webclient).DownloadString("https://raw.githubusercontent.com/JuliaCI/Appveyor.jl/version-1/bin/install.ps1"))
24+
build_script:
25+
- echo "%JL_BUILD_SCRIPT%"
26+
- C:\julia\bin\julia -e "%JL_BUILD_SCRIPT%"
27+
test_script:
28+
- echo "%JL_TEST_SCRIPT%"
29+
- C:\julia\bin\julia -e "%JL_TEST_SCRIPT%"
30+
# on_success:
31+
# - echo "%JL_CODECOV_SCRIPT%"
32+
# - C:\julia\bin\julia -e "%JL_CODECOV_SCRIPT%"

0 commit comments

Comments
 (0)