summaryrefslogtreecommitdiffstats
path: root/appveyor.yml
diff options
context:
space:
mode:
authorSebastien Blaisot <sebastien@blaisot.org>2016-11-23 13:54:11 +0100
committerSebastien Blaisot <sebastien@blaisot.org>2016-11-23 13:54:11 +0100
commit546af4520489747abb9e1a1dc07c1c8454a55f6f (patch)
treee1c189e4e02f3e51690cc4a964a0780570f25315 /appveyor.yml
parent7f9a55c15d08912d9e44655e3354cc2828243b71 (diff)
rename appveyor bindir variable to distdir
Diffstat (limited to 'appveyor.yml')
-rw-r--r--appveyor.yml8
1 files changed, 4 insertions, 4 deletions
diff --git a/appveyor.yml b/appveyor.yml
index 7c5f8adc13..3492791473 100644
--- a/appveyor.yml
+++ b/appveyor.yml
@@ -14,9 +14,9 @@ configuration:
environment:
matrix:
- platform: x64
- bindir: dist64
+ distdir: dist64
- platform: x86
- bindir: dist32
+ distdir: dist32
matrix:
fast_finish: false # set this flag to true to immediately finish build once one of the jobs fails.
cache:
@@ -41,9 +41,9 @@ test_script:
- echo *** Testing
# Calling mixxx-test under bash to have standard output
# and use stdbuf to unbuffer standard & error output
- - bash -c "stdbuf -oL -eL %bindir%/mixxx-test.exe 2>&1"
+ - bash -c "stdbuf -oL -eL %distdir%/mixxx-test.exe 2>&1"
- timeout 5 > NUL
- - bash -c "stdbuf -oL -eL %bindir%/mixxx-test.exe --benchmark 2>&1"
+ - bash -c "stdbuf -oL -eL %distdir%/mixxx-test.exe --benchmark 2>&1"
- timeout 5 > NUL
artifacts:
- path: '*.exe'