From 71b893f201e72dd7dccca9e655ab39c1aea41894 Mon Sep 17 00:00:00 2001 From: Mizux Seiha Date: Thu, 21 May 2020 20:00:25 +0200 Subject: [PATCH] ci(osx): Fix python xcode test stage --- .github/workflows/macos_python.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) 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