From 01206774805cc36a9bbedfc129a75db2cc03dbb6 Mon Sep 17 00:00:00 2001 From: Arina Gazhina Date: Wed, 3 Sep 2025 21:04:41 +0300 Subject: [PATCH] fix(ios): upgrade simulator version --- .github/workflows/reusable-ios-checks.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/reusable-ios-checks.yaml b/.github/workflows/reusable-ios-checks.yaml index bcd88189..508eb47b 100644 --- a/.github/workflows/reusable-ios-checks.yaml +++ b/.github/workflows/reusable-ios-checks.yaml @@ -78,14 +78,14 @@ jobs: - name: Build run: | xcodebuild build -workspace ./DemoApp/REES46.xcworkspace -scheme REES46Demo \ - -sdk iphonesimulator -destination 'platform=iOS Simulator,name=iPhone 15,OS=latest' \ + -sdk iphonesimulator -destination 'platform=iOS Simulator,name=iPhone 16,OS=latest' \ CODE_SIGN_IDENTITY='' CODE_SIGNING_REQUIRED='NO' CODE_SIGN_ENTITLEMENTS='' - name: Run tests if: ${{ !cancelled() }} run: | xcodebuild test -workspace ./DemoApp/REES46.xcworkspace -scheme REES46Demo \ - -sdk iphonesimulator -destination 'platform=iOS Simulator,name=iPhone 15,OS=latest' \ + -sdk iphonesimulator -destination 'platform=iOS Simulator,name=iPhone 16,OS=latest' \ CODE_SIGN_IDENTITY='' CODE_SIGNING_REQUIRED='NO' CODE_SIGN_ENTITLEMENTS='' - name: Lint spec