Skip to content

Commit b9c733a

Browse files
authored
chore: Use Xcode 26.1 and iOS 26.1 on CI (#6463)
1 parent 3319d58 commit b9c733a

File tree

5 files changed

+16
-16
lines changed

5 files changed

+16
-16
lines changed

.github/workflows/test.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -261,8 +261,8 @@ jobs:
261261
- name: iOS 26 Sentry
262262
runs-on: macos-26
263263
platform: "iOS"
264-
xcode: "26.0.1"
265-
test-destination-os: "26.0"
264+
xcode: "26.1"
265+
test-destination-os: "26.1"
266266
device: "iPhone 17 Pro"
267267
scheme: "Sentry"
268268

@@ -290,8 +290,8 @@ jobs:
290290
- name: macOS 26 Sentry
291291
runs-on: macos-26
292292
platform: "macOS"
293-
xcode: "26.0.1"
294-
test-destination-os: "26.0"
293+
xcode: "26.1"
294+
test-destination-os: "26.1"
295295
scheme: "Sentry"
296296

297297
# Catalyst. We test the latest version, as the risk something breaking on Catalyst and not
@@ -346,8 +346,8 @@ jobs:
346346
- name: tvOS 26 Sentry
347347
runs-on: macos-26
348348
platform: "tvOS"
349-
xcode: "26.0.1"
350-
test-destination-os: "26.0"
349+
xcode: "26.1"
350+
test-destination-os: "26.1"
351351
device: "Apple TV"
352352
scheme: "Sentry"
353353

@@ -360,7 +360,7 @@ jobs:
360360

361361
# Based on a comment in CircleCI forum, we need to boot the simulator for Xcode 26: https://discuss.circleci.com/t/xcode-26-rc/54066/18
362362
- name: Boot simulator
363-
if: ${{matrix.platform == 'iOS' && matrix.test-destination-os == '26.0'}}
363+
if: ${{matrix.platform == 'iOS' && matrix.test-destination-os == '26.1'}}
364364
run: ./scripts/ci-boot-simulator.sh --xcode ${{matrix.xcode}}
365365

366366
# We split building and running tests in two steps so we know how long running the tests takes.

.github/workflows/ui-tests-common.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -80,13 +80,13 @@ jobs:
8080
env:
8181
XCODE_VERSION: ${{ inputs.xcode_version }}
8282
- name: Install required platforms for Xcode 26
83-
if: ${{ inputs.xcode_version == '26.0.1' }}
83+
if: ${{ inputs.xcode_version == '26.1' }}
8484
env:
8585
PLATFORM: ${{ inputs.platform }}
8686
run: ./scripts/ci-install-xOS-26-platforms.sh --platforms "$PLATFORM"
8787

8888
- name: Create simulator device for Xcode 26
89-
if: ${{ inputs.xcode_version == '26.0.1' }}
89+
if: ${{ inputs.xcode_version == '26.1' }}
9090
env:
9191
PLATFORM: ${{ inputs.platform }}
9292
OS_VERSION: ${{ inputs.test-destination-os }}

.github/workflows/ui-tests-critical.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -75,10 +75,10 @@ jobs:
7575
- name: iOS 26
7676
platform:
7777
runs-on: macos-15
78-
xcode: "26.0.1"
78+
xcode: "26.1"
7979
platform: "iOS"
8080
device: "iPhone 17 Pro"
81-
test-destination-os: "26.0"
81+
test-destination-os: "26.1"
8282

8383
secrets:
8484
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}

.github/workflows/ui-tests.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -97,9 +97,9 @@ jobs:
9797
- name: iOS 26
9898
runs-on: macos-15
9999
platform: "iOS"
100-
xcode: "26.0.1"
101-
device: iPhone 16 Pro
102-
test-destination-os: "26.0"
100+
xcode: "26.1"
101+
device: iPhone 17 Pro
102+
test-destination-os: "26.1"
103103
with:
104104
fastlane_command: ui_tests_ios_swift
105105
files_suffix: _xcode_${{matrix.xcode}}-${{matrix.device}}

scripts/ci-boot-simulator.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,9 +55,9 @@ case "$XCODE_VERSION" in
5555
IOS_VERSION="18.4"
5656
log_notice "Selected: $SIMULATOR with iOS $IOS_VERSION for Xcode $XCODE_VERSION"
5757
;;
58-
"26.0.1")
58+
"26.1")
5959
SIMULATOR="iPhone 17 Pro"
60-
IOS_VERSION="26.0"
60+
IOS_VERSION="26.1"
6161
log_notice "Selected: $SIMULATOR with iOS $IOS_VERSION for Xcode $XCODE_VERSION"
6262
;;
6363
*)

0 commit comments

Comments
 (0)