From 8cb0299ad24be16a2f19134b63bd9c48613c9ff1 Mon Sep 17 00:00:00 2001 From: glitchassassin Date: Thu, 9 Feb 2017 13:55:55 -0500 Subject: [PATCH] Fixed YML error --- appveyor.yml | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/appveyor.yml b/appveyor.yml index f0b271f..dbc5d32 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -40,14 +40,14 @@ environment: PYTHON_VERSION: "36-x64" install: - # 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 - # purpose but it is problematic because it tends to cancel builds pushed - # directly to master instead of just PR builds (or the converse). - # credits: JuliaLang developers. - - 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 | ` - Where-Object pullRequestId -eq $env:APPVEYOR_PULL_REQUEST_NUMBER)[0].buildNumber) { ` +# 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 +# purpose but it is problematic because it tends to cancel builds pushed +# directly to master instead of just PR builds (or the converse). +# credits: JuliaLang developers. +- 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 | ` + Where-Object pullRequestId -eq $env:APPVEYOR_PULL_REQUEST_NUMBER)[0].buildNumber) { ` throw "There are newer queued builds for this pull request, failing early." } - cmd: >- git submodule update --init --recursive