diff --git a/.github/workflows/macos_python.yml b/.github/workflows/macos_python.yml index 7278510a42..685d1ffc5e 100644 --- a/.github/workflows/macos_python.yml +++ b/.github/workflows/macos_python.yml @@ -37,6 +37,8 @@ jobs: - name: Build run: cmake --build build --config Release --target ALL_BUILD -v - name: Test - run: cmake --build build --config Release --target RUN_TESTS -v + # note: can't use the target RUN_TESTS which seems to conflict with maven run command + #run: cmake --build build --config Release --target RUN_TESTS -v + run: cd build && ctest -C Release --verbose --extra-verbose --output-on-failure - name: Install run: cmake --build build --config Release --target install -v -- DESTDIR=install