Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 7 additions & 7 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -261,8 +261,8 @@ jobs:
- name: iOS 26 Sentry
runs-on: macos-26
platform: "iOS"
xcode: "26.0.1"
test-destination-os: "26.0"
xcode: "26.1"
test-destination-os: "26.1"
device: "iPhone 17 Pro"
scheme: "Sentry"

Expand Down Expand Up @@ -290,8 +290,8 @@ jobs:
- name: macOS 26 Sentry
runs-on: macos-26
platform: "macOS"
xcode: "26.0.1"
test-destination-os: "26.0"
xcode: "26.1"
test-destination-os: "26.1"
scheme: "Sentry"

# Catalyst. We test the latest version, as the risk something breaking on Catalyst and not
Expand Down Expand Up @@ -346,8 +346,8 @@ jobs:
- name: tvOS 26 Sentry
runs-on: macos-26
platform: "tvOS"
xcode: "26.0.1"
test-destination-os: "26.0"
xcode: "26.1"
test-destination-os: "26.1"
device: "Apple TV"
scheme: "Sentry"

Expand All @@ -360,7 +360,7 @@ jobs:

# 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
- name: Boot simulator
if: ${{matrix.platform == 'iOS' && matrix.test-destination-os == '26.0'}}
if: ${{matrix.platform == 'iOS' && matrix.test-destination-os == '26.1'}}
run: ./scripts/ci-boot-simulator.sh --xcode ${{matrix.xcode}}

# We split building and running tests in two steps so we know how long running the tests takes.
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/ui-tests-common.yml
Original file line number Diff line number Diff line change
Expand Up @@ -80,13 +80,13 @@ jobs:
env:
XCODE_VERSION: ${{ inputs.xcode_version }}
- name: Install required platforms for Xcode 26
if: ${{ inputs.xcode_version == '26.0.1' }}
if: ${{ inputs.xcode_version == '26.1' }}
env:
PLATFORM: ${{ inputs.platform }}
run: ./scripts/ci-install-xOS-26-platforms.sh --platforms "$PLATFORM"

- name: Create simulator device for Xcode 26
if: ${{ inputs.xcode_version == '26.0.1' }}
if: ${{ inputs.xcode_version == '26.1' }}
env:
PLATFORM: ${{ inputs.platform }}
OS_VERSION: ${{ inputs.test-destination-os }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/ui-tests-critical.yml
Original file line number Diff line number Diff line change
Expand Up @@ -75,10 +75,10 @@ jobs:
- name: iOS 26
platform:
runs-on: macos-15
xcode: "26.0.1"
xcode: "26.1"
platform: "iOS"
device: "iPhone 17 Pro"
test-destination-os: "26.0"
test-destination-os: "26.1"

secrets:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/ui-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -97,9 +97,9 @@ jobs:
- name: iOS 26
runs-on: macos-15
platform: "iOS"
xcode: "26.0.1"
device: iPhone 16 Pro
test-destination-os: "26.0"
xcode: "26.1"
device: iPhone 17 Pro
test-destination-os: "26.1"
with:
fastlane_command: ui_tests_ios_swift
files_suffix: _xcode_${{matrix.xcode}}-${{matrix.device}}
Expand Down
4 changes: 2 additions & 2 deletions scripts/ci-boot-simulator.sh
Original file line number Diff line number Diff line change
Expand Up @@ -55,9 +55,9 @@ case "$XCODE_VERSION" in
IOS_VERSION="18.4"
log_notice "Selected: $SIMULATOR with iOS $IOS_VERSION for Xcode $XCODE_VERSION"
;;
"26.0.1")
"26.1")
SIMULATOR="iPhone 17 Pro"
IOS_VERSION="26.0"
IOS_VERSION="26.1"
log_notice "Selected: $SIMULATOR with iOS $IOS_VERSION for Xcode $XCODE_VERSION"
;;
*)
Expand Down
Loading