File tree Expand file tree Collapse file tree 2 files changed +11
-0
lines changed Expand file tree Collapse file tree 2 files changed +11
-0
lines changed Original file line number Diff line number Diff line change 5
5
- osx
6
6
julia :
7
7
- 0.4
8
+ - 0.5
8
9
- nightly
9
10
notifications :
10
11
email : false
Original file line number Diff line number Diff line change @@ -2,6 +2,8 @@ environment:
2
2
matrix :
3
3
- JULIAVERSION : " julialang/bin/winnt/x86/0.4/julia-0.4-latest-win32.exe"
4
4
- JULIAVERSION : " julialang/bin/winnt/x64/0.4/julia-0.4-latest-win64.exe"
5
+ - JULIAVERSION : " julialang/bin/winnt/x86/0.5/julia-0.5-latest-win32.exe"
6
+ - JULIAVERSION : " julialang/bin/winnt/x64/0.5/julia-0.5-latest-win64.exe"
5
7
- JULIAVERSION : " julianightlies/bin/winnt/x86/julia-latest-win32.exe"
6
8
- JULIAVERSION : " julianightlies/bin/winnt/x64/julia-latest-win64.exe"
7
9
@@ -10,13 +12,21 @@ branches:
10
12
- master
11
13
- /release-.*/
12
14
15
+ skip_commits :
16
+ message : /\[av skip\]/
17
+
13
18
notifications :
14
19
- provider : Email
15
20
on_build_success : false
16
21
on_build_failure : false
17
22
on_build_status_changed : false
18
23
19
24
install :
25
+ # If there's a newer build queued for the same PR, cancel this one
26
+ - ps : if ($env:APPVEYOR_PULL_REQUEST_NUMBER -and $env:APPVEYOR_BUILD_NUMBER -ne ((Invoke-RestMethod `
27
+ https://ci.appveyor.com/api/projects/$env:APPVEYOR_ACCOUNT_NAME/$env:APPVEYOR_PROJECT_SLUG/history?recordsNumber=50).builds | `
28
+ Where-Object pullRequestId -eq $env:APPVEYOR_PULL_REQUEST_NUMBER)[0].buildNumber) { `
29
+ throw "There are newer queued builds for this pull request, failing early." }
20
30
# Download most recent Julia Windows binary
21
31
- ps : (new-object net.webclient).DownloadFile(
22
32
$("http://s3.amazonaws.com/"+$env:JULIAVERSION),
You can’t perform that action at this time.
0 commit comments