ref: 6cdd84a3c877e5d0f68ee0d047fadfa737c0efd9
parent: 92422f6e39db32b9c6f416d53194379d2f9cbf46
author: Ricardo Constantino <wiiaboo@gmail.com>
date: Thu May 25 10:09:30 EDT 2017
appveyor: fix typoed appveyor command And run the build request only at the last configuration. Also add a check if api_key is unset to not try to request a new build. Signed-off-by: Ralph Giles <giles@thaumas.net>
--- a/.appveyor.yml
+++ b/.appveyor.yml
@@ -34,4 +34,4 @@
- path: opus.zip
on_success:
-- appveyor Start-AppveyorBuild -ApiKey %API_KEY% -ProjectSlug opus-tools
+- ps: if ($env:api_key -and "$env:configuration/$env:platform" -eq "ReleaseDLL_fixed/x64") { Start-AppveyorBuild -ApiKey $env:api_key -ProjectSlug 'opus-tools' }