From d9c39e72a2ba9830dd4db6c03dbd4a9e0936695a Mon Sep 17 00:00:00 2001 From: Dave Abrahams Date: Mon, 12 Feb 2024 15:55:15 -0800 Subject: [PATCH] Avoid actually testing under Xcode --- .github/workflows/build-and-test.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build-and-test.yml b/.github/workflows/build-and-test.yml index e5de9bc..b1802e4 100644 --- a/.github/workflows/build-and-test.yml +++ b/.github/workflows/build-and-test.yml @@ -28,12 +28,12 @@ jobs: with: runCmd: ${{ env.BUILD_AND_TEST }} - - name: Xcode + - name: Xcode (build only—"error: Scheme DummyTestee is not currently configured for the test action.") if: ${{ matrix.os == 'macos-latest' }} run: | cmake -DENABLE_TESTING=1 -GXcode -S . -B .xcode-build cd .xcode-build - xcrun xcodebuild -configuration ${{ matrix.configuration }} -scheme XCTestDiscovery -destination 'platform=macOS' test + xcrun xcodebuild -configuration ${{ matrix.configuration }} -scheme DummyTestee -destination 'platform=macOS' build-for-testing - name: Setup Swift uses: SwiftyLab/setup-swift@latest