Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.xiph.org/xiph/opus.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRicardo Constantino <wiiaboo@gmail.com>2017-05-25 16:09:30 +0300
committerRalph Giles <giles@thaumas.net>2017-05-25 23:46:45 +0300
commit6cdd84a3c877e5d0f68ee0d047fadfa737c0efd9 (patch)
tree77e94f62dfd58133aef3750a00444f1665793434 /.appveyor.yml
parent92422f6e39db32b9c6f416d53194379d2f9cbf46 (diff)
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>
Diffstat (limited to '.appveyor.yml')
-rw-r--r--.appveyor.yml2
1 files changed, 1 insertions, 1 deletions
diff --git a/.appveyor.yml b/.appveyor.yml
index 8baffcc6..a0f4a776 100644
--- a/.appveyor.yml
+++ b/.appveyor.yml
@@ -34,4 +34,4 @@ artifacts:
- 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' }