From 13ed6358036c1b6c62d5bf3f0c13cf4a4d25b361 Mon Sep 17 00:00:00 2001 From: DarkPhoenix Date: Sun, 2 Feb 2020 03:38:43 +0300 Subject: [PATCH] We do not care if all PR builds will be built --- .appveyor.yml | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/.appveyor.yml b/.appveyor.yml index 05f634e3e..296162925 100644 --- a/.appveyor.yml +++ b/.appveyor.yml @@ -3,21 +3,9 @@ image: Visual Studio 2019 environment: matrix: - PYTHON: "C:\\Python38-x64" - PYTHON_VERSION: "3.8.x" - PYTHON_ARCH: "64" init: - ps: iex ((new-object net.webclient).DownloadString('https://raw.githubusercontent.com/appveyor/ci/master/scripts/enable-rdp.ps1')) 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) { ` - throw "There are newer queued builds for this pull request, failing early." } - - ps: echo("OS version:") - ps: "[System.Environment]::OSVersion.Version"