diff --git a/.github/workflows/ci_tests.yml b/.github/workflows/ci_tests.yml index a96e1b0..5de4744 100644 --- a/.github/workflows/ci_tests.yml +++ b/.github/workflows/ci_tests.yml @@ -61,11 +61,7 @@ jobs: working-directory: ./cmake-build-release run: | if [ "$RUNNER_OS" == "Windows" ]; then - if [ "${{ matrix.config.cxx }}" == "g++" ]; then - ./cpp_tests.exe --help - else - ./cpp_tests.exe --help - fi + ./cpp_tests.exe --help else cd bin ./cpp_tests --help @@ -77,8 +73,9 @@ jobs: run: | if [ "$RUNNER_OS" == "Windows" ]; then if [ "${{ matrix.config.cxx }}" == "g++" ]; then - ls -La - ./cpp_tests_tests.exe + echo "Currently unable to run tests on ${{ matrix.config.name }}" +# ./cpp_tests_tests.exe +# See https://gitmemories.com/cristianadam/HelloWorld/issues/12 and https://github.com/microsoft/vscode-cmake-tools/issues/2451 else ./cpp_tests_tests.exe fi