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

github.com/mumble-voip/mumble.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/.ci
diff options
context:
space:
mode:
authorRobert Adam <dev@robert-adam.de>2021-03-08 12:14:57 +0300
committerRobert Adam <dev@robert-adam.de>2021-03-08 12:14:57 +0300
commitebdc796491eee18f07509ef981ea41ab32ee4c9f (patch)
treedb3398da189a86abd21173cc47bf8f24ab08f89c /.ci
parentbb252f6428d5c9678ae40af5e8bf641f32d09b69 (diff)
CI(macOS): Fix test cases not being found
The variable holding the directory to change into to run the tests in, had a typo in its name, causing the cd to fail. Therefore no tests were found and run.
Diffstat (limited to '.ci')
-rw-r--r--.ci/azure-pipelines/steps_macos.yml2
1 files changed, 1 insertions, 1 deletions
diff --git a/.ci/azure-pipelines/steps_macos.yml b/.ci/azure-pipelines/steps_macos.yml
index 7f019ace6..96b2e50fc 100644
--- a/.ci/azure-pipelines/steps_macos.yml
+++ b/.ci/azure-pipelines/steps_macos.yml
@@ -18,7 +18,7 @@ steps:
env:
MUMBLE_BUILD_NUMBER_TOKEN: $(BUILD_NUMBER_TOKEN)
displayName: 'Build'
- - script: 'cd $BUILD_BINARIES_DIRECTORY; ctest --verbose'
+ - script: 'cd $BUILD_BINARIESDIRECTORY; ctest --verbose'
displayName: 'Test'
- script: .ci/azure-pipelines/release_macos.bash
displayName: 'Release'