release: 0.13.0 #87
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
on: | |
push: | |
branches: | |
- main | |
paths: | |
- "packages/react-native/ios/**" | |
pull_request: | |
paths: | |
- "packages/react-native/ios/**" | |
name: iOS Integration | |
jobs: | |
build-new-arch: | |
runs-on: macos-latest | |
name: Build iOS (New Architecture) | |
strategy: | |
matrix: | |
node-version: [22.x] | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Setup pnpm | |
uses: pnpm/action-setup@v2 | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v3 | |
with: | |
node-version: ${{ matrix.node-version }} | |
cache: "pnpm" | |
- run: pnpm install | |
- name: Library Build | |
run: pnpm build | |
- name: Install Cocoapods | |
run: gem install cocoapods | |
- name: Build iOS | |
run: | | |
cd examples/v0.76.1-new-arch/ios | |
pod install | |
xcodebuild -workspace HotUpdaterExample.xcworkspace -scheme HotUpdaterExample -configuration Release -sdk iphonesimulator | |
cd ../.. | |
build-old-arch: | |
runs-on: macos-latest | |
name: Build iOS (Old Architecture) | |
strategy: | |
matrix: | |
node-version: [22.x] | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Setup pnpm | |
uses: pnpm/action-setup@v2 | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v3 | |
with: | |
node-version: ${{ matrix.node-version }} | |
cache: "pnpm" | |
- run: pnpm install | |
- name: Library Build | |
run: pnpm build | |
- name: Install Cocoapods | |
run: gem install cocoapods | |
- name: Build iOS | |
run: | | |
cd examples/v0.71.19/ios | |
pod install | |
xcodebuild -workspace HotUpdaterExample.xcworkspace -scheme HotUpdaterExample -configuration Release -sdk iphonesimulator | |
cd ../.. |