diff --git a/.github/workflows/ios-e2e-test.yml b/.github/workflows/ios-e2e-test.yml index 8f0dc4b676..974b56c791 100644 --- a/.github/workflows/ios-e2e-test.yml +++ b/.github/workflows/ios-e2e-test.yml @@ -24,7 +24,7 @@ on: jobs: build: name: 🏗️ Build E2E ipa - runs-on: macos-14 + runs-on: macos-15 timeout-minutes: 60 env: WORKING_DIRECTORY: example @@ -95,7 +95,7 @@ jobs: e2e-test: name: ⚙️ Automated test cases (iOS-${{ matrix.devices.ios }}) runs-on: macos-${{ matrix.devices.macos }} - timeout-minutes: 90 + timeout-minutes: 150 env: WORKING_DIRECTORY: example concurrency: @@ -103,11 +103,12 @@ jobs: cancel-in-progress: true strategy: matrix: - devices: [ + devices: + [ { ios: 15, xcode: "15.4", macos: 14, runtime: "15.5" }, { ios: 16, xcode: "15.4", macos: 14, runtime: "16.4" }, { ios: 17, xcode: "15.4", macos: 14 }, - # { ios: 18, xcode: "16.0", macos: 15 }, + { ios: 18, xcode: "16.1", macos: 15 }, ] needs: build steps: diff --git a/e2e/package.json b/e2e/package.json index dd077045e2..168da15f67 100644 --- a/e2e/package.json +++ b/e2e/package.json @@ -11,7 +11,7 @@ "test-example:ios-15": "detox test --configuration example.ios.sim-15.release --loglevel verbose --take-screenshots failing --record-videos failing --retries 2", "test-example:ios-16": "detox test --configuration example.ios.sim-16.release --loglevel verbose --take-screenshots failing --record-videos failing --retries 2", "test-example:ios-17": "detox test --configuration example.ios.sim-17.release --loglevel verbose --take-screenshots failing --record-videos failing --retries 2", - "test-example:ios-18": "detox test --configuration example.ios.sim-18.release --loglevel verbose --take-screenshots failing --record-videos failing --retries 2", + "test-example:ios-18": "detox test --configuration example.ios.sim-18.release --loglevel verbose --take-screenshots failing --record-videos failing", "test": "echo \"Error: no test specified\" && exit 1", "detox-clean": "detox clean-framework-cache && detox build-framework-cache", "postinstall": "patch-package"