From ebdc796491eee18f07509ef981ea41ab32ee4c9f Mon Sep 17 00:00:00 2001 From: Robert Adam Date: Mon, 8 Mar 2021 10:14:57 +0100 Subject: [PATCH] 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. --- .ci/azure-pipelines/steps_macos.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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'