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/build-ios-fabric.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ on:
jobs:
build:
name: Build iOS FabricExample App
runs-on: macOS-14
runs-on: macOS-15
defaults:
run:
working-directory: FabricExample/ios
Expand All @@ -38,7 +38,7 @@ jobs:

- uses: maxim-lobanov/setup-xcode@v1
with:
xcode-version: "16.2"
xcode-version: "16.4"

- name: Get yarn cache directory path
id: fabric-yarn-cache-dir-path
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/build-ios.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ on:
jobs:
build:
name: Build iOS Example App
runs-on: macOS-14
runs-on: macOS-15
defaults:
run:
working-directory: example/ios
Expand All @@ -36,7 +36,7 @@ jobs:

- uses: maxim-lobanov/setup-xcode@v1
with:
xcode-version: "16.2"
xcode-version: "16.4"

- name: Get yarn cache directory path
id: yarn-cache-dir-path
Expand Down
22 changes: 15 additions & 7 deletions .github/workflows/ios-e2e-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -39,7 +39,7 @@ jobs:
cache: "yarn"
- uses: maxim-lobanov/setup-xcode@v1
with:
xcode-version: "16.2"
xcode-version: "16.4"
- name: Get Xcode version
run: xcodebuild -version
- name: Save yarn cache directory path
Expand Down Expand Up @@ -103,11 +103,12 @@ jobs:
cancel-in-progress: true
strategy:
matrix:
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 },
devices:
[
{ ios: 15, xcode: "16.4", macos: 15, runtime: "15.5" },
{ ios: 16, xcode: "16.4", macos: 15, runtime: "16.4" },
{ ios: 17, xcode: "16.4", macos: 15, runtime: "17.5" },
{ ios: 18, xcode: "16.4", macos: 15 },
]
needs: build
steps:
Expand Down Expand Up @@ -154,6 +155,13 @@ jobs:
run: yarn install --cwd e2e
- name: Use software keyboard
run: defaults write com.apple.iphonesimulator ConnectHardwareKeyboard -bool NO
# https://bitrise.io/blog/post/xcode-15-performance-regressions
- name: Install yeetd
run: |
defaults write dev.biscuit.yeetd killapsd true
wget https://github.com/biscuitehh/yeetd/releases/download/1.0/yeetd-normal.pkg
sudo installer -pkg yeetd-normal.pkg -target /
yeetd &
- name: Test app
working-directory: e2e
run: SOFT_CHECK=false yarn test-example:ios-${{ matrix.devices.ios }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/verify-ios.yml
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ jobs:

- uses: maxim-lobanov/setup-xcode@v1
with:
xcode-version: "16.3"
xcode-version: "16.4"

- name: Install xcpretty
run: gem install xcpretty
Expand Down
2 changes: 1 addition & 1 deletion e2e/.detoxrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ module.exports = {
type: "ios.simulator",
device: {
type: "iPhone 16 Pro",
os: "iOS 18.4",
os: "iOS 18.5",
},
},
attached: {
Expand Down
2 changes: 1 addition & 1 deletion e2e/kit/007-keyboard-avoiding-view.e2e.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ describe("`KeyboardAvoidingView` specification", () => {
it("should have expected UI when keyboard closed - package/padding", async () => {
await waitForExpect(async () => {
// 0.25 because on iOS Home indicator sometimes may have different colors per different runs
await expectBitmapsToBeEqual("AvoidingViewPackagePaddingInitial", 0.25);
await expectBitmapsToBeEqual("AvoidingViewPackagePaddingInitial", 0.27);
});
});

Expand Down
Loading