Skip to content

Commit 8ea31fc

Browse files
committed
Add recent workflow changes
- [chore: use the macOS 14 with M1 processor runner on workflows by atlj · Pull Request #522 · callstack/react-native-builder-bob](callstack/react-native-builder-bob#522) - [Update ci.yml : Using pod install instead of pod-install by Archish27 · Pull Request #520 · callstack/react-native-builder-bob](callstack/react-native-builder-bob#520) - [chore: use java 17 and 6G max heap on workflows by atlj · Pull Request #524 · callstack/react-native-builder-bob](callstack/react-native-builder-bob#524)
1 parent 35c6942 commit 8ea31fc

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

.github/workflows/ci.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ jobs:
8080
uses: actions/setup-java@v3
8181
with:
8282
distribution: 'zulu'
83-
java-version: '11'
83+
java-version: '17'
8484

8585
- name: Finalize Android SDK
8686
if: env.turbo_cache_hit != 1
@@ -103,7 +103,7 @@ jobs:
103103
yarn turbo run build:android --cache-dir="${{ env.TURBO_CACHE_DIR }}"
104104
105105
build-ios:
106-
runs-on: macos-latest
106+
runs-on: macos-14
107107
env:
108108
TURBO_CACHE_DIR: .turbo/ios
109109
steps:
@@ -143,7 +143,8 @@ jobs:
143143
- name: Install cocoapods
144144
if: env.turbo_cache_hit != 1 && steps.cocoapods-cache.outputs.cache-hit != 'true'
145145
run: |
146-
yarn pod-install example/ios
146+
cd example/ios
147+
pod install
147148
env:
148149
NO_FLIPPER: 1
149150

0 commit comments

Comments
 (0)