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
4 changes: 2 additions & 2 deletions .github/workflows/scripts/boot-simulator.sh
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,10 @@ echo "Attempting to boot iOS Simulator $SIM..."
(xcrun simctl boot "$SIM" || true) && open -a Simulator.app

# Is it booted?
xcrun simctl list |grep -i 'iPhone 16 ('|grep -v 'Phone:'|grep -v 'unavailable'|grep -v CoreSimulator|grep Booted
xcrun simctl list |grep -i "$SIM ("|grep -v 'Phone:'|grep -v 'unavailable'|grep -v CoreSimulator|grep Booted

# Are we a Debug or Release build?
BUILDDIR="$(ls -1 ios/build/Build/Products/)"

# Install our app (glob so Release or Debug works)
xcrun simctl install 'iPhone 16' "ios/build/Build/Products/$BUILDDIR/testing.app"
xcrun simctl install "$SIM" "ios/build/Build/Products/$BUILDDIR/testing.app"
2 changes: 1 addition & 1 deletion .github/workflows/tests_e2e_ios.yml
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ jobs:
# it will run unit tests on whatever OS combinations are desired
ios:
name: iOS (${{ matrix.buildmode }}, ${{ matrix.iteration }})
runs-on: macos-15
runs-on: macos-26
needs: matrix_prep
# TODO matrix across APIs, at least 11 and 15 (lowest to highest)
timeout-minutes: 60
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/tests_e2e_other.yml
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ jobs:
# it will run unit tests on whatever OS combinations are desired
other:
name: Other (${{ matrix.iteration }})
runs-on: macos-15
runs-on: macos-26
needs: matrix_prep
timeout-minutes: 100
env:
Expand Down
2 changes: 1 addition & 1 deletion tests/.detoxrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ module.exports = {
simulator: {
type: 'ios.simulator',
device: {
type: 'iPhone 16',
type: 'iPhone 17',
},
},
attached: {
Expand Down
Loading