Fixed YML error
This commit is contained in:
parent
262c5c3239
commit
8cb0299ad2
16
appveyor.yml
16
appveyor.yml
|
@ -40,14 +40,14 @@ environment:
|
||||||
PYTHON_VERSION: "36-x64"
|
PYTHON_VERSION: "36-x64"
|
||||||
|
|
||||||
install:
|
install:
|
||||||
# If there is a newer build queued for the same PR, cancel this one.
|
# If there is a newer build queued for the same PR, cancel this one.
|
||||||
# The AppVeyor 'rollout builds' option is supposed to serve the same
|
# The AppVeyor 'rollout builds' option is supposed to serve the same
|
||||||
# purpose but it is problematic because it tends to cancel builds pushed
|
# purpose but it is problematic because it tends to cancel builds pushed
|
||||||
# directly to master instead of just PR builds (or the converse).
|
# directly to master instead of just PR builds (or the converse).
|
||||||
# credits: JuliaLang developers.
|
# credits: JuliaLang developers.
|
||||||
- ps: if ($env:APPVEYOR_PULL_REQUEST_NUMBER -and $env:APPVEYOR_BUILD_NUMBER -ne ((Invoke-RestMethod `
|
- ps: if ($env:APPVEYOR_PULL_REQUEST_NUMBER -and $env:APPVEYOR_BUILD_NUMBER -ne ((Invoke-RestMethod `
|
||||||
https://ci.appveyor.com/api/projects/$env:APPVEYOR_ACCOUNT_NAME/$env:APPVEYOR_PROJECT_SLUG/history?recordsNumber=50).builds | `
|
https://ci.appveyor.com/api/projects/$env:APPVEYOR_ACCOUNT_NAME/$env:APPVEYOR_PROJECT_SLUG/history?recordsNumber=50).builds | `
|
||||||
Where-Object pullRequestId -eq $env:APPVEYOR_PULL_REQUEST_NUMBER)[0].buildNumber) { `
|
Where-Object pullRequestId -eq $env:APPVEYOR_PULL_REQUEST_NUMBER)[0].buildNumber) { `
|
||||||
throw "There are newer queued builds for this pull request, failing early." }
|
throw "There are newer queued builds for this pull request, failing early." }
|
||||||
- cmd: >-
|
- cmd: >-
|
||||||
git submodule update --init --recursive
|
git submodule update --init --recursive
|
||||||
|
|
Loading…
Reference in New Issue