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.
This commit is contained in:
Robert Adam 2021-03-08 10:14:57 +01:00
parent bb252f6428
commit ebdc796491

View File

@ -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'