From 2b8b9203c55ffa4d37b02401db7e8c50d866184d Mon Sep 17 00:00:00 2001 From: Prince Yadav <66916296+prince-0408@users.noreply.github.com> Date: Wed, 1 Jul 2026 20:14:55 +0530 Subject: [PATCH] fix(ci): update simulator destination to iPhone 17 --- .github/workflows/ci_test.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci_test.yaml b/.github/workflows/ci_test.yaml index bc0a59af..ac7cc3c0 100644 --- a/.github/workflows/ci_test.yaml +++ b/.github/workflows/ci_test.yaml @@ -38,11 +38,11 @@ jobs: - name: Build run: | - xcodebuild -scheme Scribe -derivedDataPath Build/ -destination 'platform=iOS Simulator,name=iPhone 16,OS=18.5' clean build | xcpretty + xcodebuild -scheme Scribe -derivedDataPath Build/ -destination 'platform=iOS Simulator,name=iPhone 17' clean build | xcpretty - name: Test and Generate Coverage run: | - xcodebuild -scheme Scribe -derivedDataPath Build/ -destination 'platform=iOS Simulator,name=iPhone 16,OS=18.5' test -enableCodeCoverage YES CODE_SIGN_IDENTITY="" CODE_SIGNING_REQUIRED=NO | xcpretty + xcodebuild -scheme Scribe -derivedDataPath Build/ -destination 'platform=iOS Simulator,name=iPhone 17' test -enableCodeCoverage YES CODE_SIGN_IDENTITY="" CODE_SIGNING_REQUIRED=NO | xcpretty xcrun xccov view --report $(find ./Build/Logs/Test -name '*.xcresult') --json > code_coverage.json - name: Parse Coverage and Print to Terminal