Skip to content

Commit 9ace5ea

Browse files
add appveyor back
1 parent e6eef2a commit 9ace5ea

File tree

2 files changed

+46
-1
lines changed

2 files changed

+46
-1
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ language: julia
44
os:
55
- linux
66
- osx
7-
- windows
7+
# - windows
88

99
julia:
1010
- 1.0

appveyor.yml

Lines changed: 45 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
environment:
2+
matrix:
3+
- julia_version: 1
4+
- julia_version: nightly
5+
6+
platform:
7+
- x86 # 32-bit
8+
- x64 # 64-bit
9+
10+
# # Uncomment the following lines to allow failures on nightly julia
11+
# # (tests will run but not make your overall status red)
12+
# matrix:
13+
# allow_failures:
14+
# - julia_version: nightly
15+
16+
branches:
17+
only:
18+
- master
19+
- /release-.*/
20+
21+
notifications:
22+
- provider: Email
23+
on_build_success: false
24+
on_build_failure: false
25+
on_build_status_changed: false
26+
27+
install:
28+
- ps: iex ((new-object net.webclient).DownloadString("https://raw.githubusercontent.com/JuliaCI/Appveyor.jl/version-1/bin/install.ps1"))
29+
30+
build_script:
31+
- echo "%JL_BUILD_SCRIPT%"
32+
- C:\julia\bin\julia -e "%JL_BUILD_SCRIPT%"
33+
34+
test_script:
35+
- echo "%JL_TEST_SCRIPT%"
36+
- C:\julia\bin\julia -e "%JL_TEST_SCRIPT%"
37+
38+
# # Uncomment to support code coverage upload. Should only be enabled for packages
39+
# # which would have coverage gaps without running on Windows
40+
# on_success:
41+
# - echo "%JL_CODECOV_SCRIPT%"
42+
# - C:\julia\bin\julia -e "%JL_CODECOV_SCRIPT%"
43+
44+
after_test:
45+
- C:\julia\bin\julia -e "using Pkg; Pkg.add(\"Coverage\"); using Coverage; Codecov.submit(process_folder())"

0 commit comments

Comments
 (0)