From 4d3c1db0597548b78f7558929a14b472a7679453 Mon Sep 17 00:00:00 2001 From: dcvz Date: Thu, 11 Apr 2024 19:27:29 +0200 Subject: [PATCH] chore(ci): Remove ios matrix for now --- .github/workflows/validate.yml | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/.github/workflows/validate.yml b/.github/workflows/validate.yml index 329fc83..29f59f7 100644 --- a/.github/workflows/validate.yml +++ b/.github/workflows/validate.yml @@ -13,17 +13,14 @@ jobs: runs-on: blaze/macos-14 strategy: matrix: - target: [macos, iOS] + target: [macos] include: - - target: iOS - destination: '-destination "platform=iOS Simulator,name=iPhone 15 Pro"' - target: macos destination: '-destination "platform=macOS,name=Any Mac"' steps: - name: Checkout Repo uses: actions/checkout@v4 - name: Run Tests - if: matrix.target == 'macos' # Skip iOS until we can get them to run reliably run: xcodebuild test -scheme SwiftAudioEx ${{ matrix.destination }} -enableCodeCoverage YES - name: Upload coverage to Codecov if: matrix.target == 'macos'