From 92dbdbee6dde9abf66991c70d8903055fc90afae Mon Sep 17 00:00:00 2001 From: Philipp Hofmann Date: Tue, 6 Feb 2024 17:43:57 +0100 Subject: [PATCH] ci: Address Sanitizer tests use Xcode 15.2 (#3615) Address Sanitizer tests use Xcode 15.2 with iPhone 14 and iOS 17.2 instead of Xcode 14.3 with iPhone 8 and iOS 15.5. --- .github/workflows/test.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index e7524f1f470..b767f2ee11d 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -357,11 +357,11 @@ jobs: steps: - uses: actions/checkout@v4 - - run: ./scripts/ci-select-xcode.sh + - run: ./scripts/ci-select-xcode.sh 15.2 # GitHub Actions sometimes fail to launch the UI tests. Therefore we retry - name: Run Fastlane - run: for i in {1..2}; do fastlane ui_tests_ios_swift device:"$iPhone 8 (15.5)" address_sanitizer:true && break ; done + run: for i in {1..2}; do fastlane ui_tests_ios_swift device:"iPhone 14 (17.2)" address_sanitizer:true && break ; done shell: sh - name: Archiving Raw Test Logs