-
Notifications
You must be signed in to change notification settings - Fork 12
/
appveyor.yml
52 lines (44 loc) · 1.24 KB
/
appveyor.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
### DO NOT COPY THIS SCRIPT FOR USE IN OTHER REPOSITORIES ###
# Copy the one in the README instead.
environment:
matrix:
- julia_version: 0.6
- julia_version: 0.7.0
- julia_version: 1
- julia_version: 1.2
- julia_version: 1.3
- julia_version: 1.4
- julia_version: nightly
platform:
- x86
- x64
## uncomment the following lines to allow failures on nightly julia
## (tests will run but not make your overall status red)
#matrix:
# allow_failures:
# - julia_version: latest
branches:
only:
- /version-.*/
notifications:
- provider: Email
on_build_success: false
on_build_failure: false
on_build_status_changed: false
install:
- ps: |
if (Test-Path env:APPVEYOR_PULL_REQUEST_HEAD_COMMIT) {
$ref = $env:APPVEYOR_PULL_REQUEST_HEAD_COMMIT
} else {
$ref = $env:APPVEYOR_REPO_BRANCH
}
iex ((new-object net.webclient).DownloadString("https://raw.githubusercontent.com/JuliaCI/Appveyor.jl/$ref/bin/install.ps1"))
build_script:
- echo "%JL_BUILD_SCRIPT%"
- C:\julia\bin\julia -e "%JL_BUILD_SCRIPT%"
test_script:
- echo "%JL_TEST_SCRIPT%"
- C:\julia\bin\julia -e "%JL_TEST_SCRIPT%"
on_success:
- echo "%JL_CODECOV_SCRIPT%"
- C:\julia\bin\julia -e "%JL_CODECOV_SCRIPT%"