fix ci #105
This file contains hidden or 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
| name: e2e-ios | |
| on: | |
| pull_request: | |
| branches: | |
| - '**' | |
| paths: | |
| - '.github/workflows/e2e_ios.yml' | |
| - '.gitmodules' | |
| - 'package.json' | |
| - 'bun.lock' | |
| - 'react-native-update.podspec' | |
| - 'react-native.config.js' | |
| - 'expo-module.config.json' | |
| - 'src/**' | |
| - 'scripts/**' | |
| - 'ios/**' | |
| - 'cpp/**' | |
| - 'android/jni/**' | |
| - 'Example/e2etest/**' | |
| push: | |
| branches: | |
| - master | |
| paths: | |
| - '.github/workflows/e2e_ios.yml' | |
| - '.gitmodules' | |
| - 'package.json' | |
| - 'bun.lock' | |
| - 'react-native-update.podspec' | |
| - 'react-native.config.js' | |
| - 'expo-module.config.json' | |
| - 'src/**' | |
| - 'scripts/**' | |
| - 'ios/**' | |
| - 'cpp/**' | |
| - 'android/jni/**' | |
| - 'Example/e2etest/**' | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| e2e-ios: | |
| runs-on: macos-26 | |
| timeout-minutes: 30 | |
| steps: | |
| - name: Checkout react-native-update | |
| uses: actions/checkout@v6 | |
| with: | |
| submodules: recursive | |
| - name: Checkout react-native-update-cli | |
| uses: actions/checkout@v6 | |
| with: | |
| repository: reactnativecn/react-native-update-cli | |
| path: react-native-update-cli | |
| - name: Setup Node.js | |
| uses: actions/setup-node@v6 | |
| with: | |
| node-version: 22 | |
| - name: Setup Bun | |
| uses: oven-sh/setup-bun@v2 | |
| with: | |
| bun-version: latest | |
| - name: Cache Bun dependencies | |
| uses: actions/cache@v5.0.4 | |
| with: | |
| path: ~/.bun/install/cache | |
| key: ${{ runner.os }}-bun-e2e-${{ hashFiles('Example/e2etest/bun.lock', 'react-native-update-cli/bun.lock') }} | |
| restore-keys: | | |
| ${{ runner.os }}-bun-e2e- | |
| - name: Setup Xcode | |
| uses: maxim-lobanov/setup-xcode@v1 | |
| with: | |
| xcode-version: '26.4' | |
| - name: Install applesimutils | |
| run: HOMEBREW_NO_AUTO_UPDATE=1 brew tap wix/brew && HOMEBREW_NO_AUTO_UPDATE=1 brew install applesimutils | |
| - name: Install e2etest dependencies | |
| run: cd Example/e2etest && bun install --frozen-lockfile | |
| - name: Link local react-native-update | |
| run: | | |
| set -euo pipefail | |
| export LOCAL_RNU_VERSION="$(node -p "require('./Example/e2etest/node_modules/react-native-update/package.json').version")" | |
| LOCAL_RNU_DIR="$PWD/Example/e2etest/.e2e-artifacts/local-react-native-update" | |
| rm -rf "$LOCAL_RNU_DIR" Example/e2etest/node_modules/react-native-update | |
| mkdir -p "$LOCAL_RNU_DIR" | |
| cp package.json react-native-update.podspec react-native.config.js expo-module.config.json "$LOCAL_RNU_DIR"/ | |
| rsync -a --exclude='.git' src ios android cpp scripts "$LOCAL_RNU_DIR"/ | |
| node -e "const fs = require('fs'); const file = 'Example/e2etest/.e2e-artifacts/local-react-native-update/package.json'; const pkg = JSON.parse(fs.readFileSync(file, 'utf8')); pkg.version = process.env.LOCAL_RNU_VERSION; fs.writeFileSync(file, JSON.stringify(pkg, null, 2) + '\n');" | |
| ln -s ../.e2e-artifacts/local-react-native-update Example/e2etest/node_modules/react-native-update | |
| - name: Install react-native-update-cli dependencies | |
| run: cd react-native-update-cli && bun install --frozen-lockfile && bun run build | |
| - name: Prepare local update artifacts | |
| env: | |
| E2E_PLATFORM: ios | |
| RNU_CLI_ROOT: ${{ github.workspace }}/react-native-update-cli | |
| run: cd Example/e2etest && bun run prepare:e2e | |
| - name: Cache CocoaPods dependencies | |
| uses: actions/cache@v5.0.4 | |
| with: | |
| path: | | |
| Example/e2etest/ios/Pods | |
| ~/Library/Caches/CocoaPods | |
| key: ${{ runner.os }}-cocoapods-e2e-${{ hashFiles('Example/e2etest/ios/Podfile.lock', 'Example/e2etest/ios/Podfile', 'Example/e2etest/bun.lock') }} | |
| restore-keys: | | |
| ${{ runner.os }}-cocoapods-e2e- | |
| - name: Install CocoaPods dependencies | |
| run: cd Example/e2etest/ios && pod install | |
| - name: Cache Detox iOS framework | |
| id: cache-detox-ios-framework | |
| uses: actions/cache@v5.0.4 | |
| with: | |
| path: ~/Library/Detox | |
| key: ${{ runner.os }}-detox-ios-framework-xcode-26.4-${{ hashFiles('Example/e2etest/bun.lock') }} | |
| restore-keys: | | |
| ${{ runner.os }}-detox-ios-framework-xcode-26.4- | |
| - name: Build Detox iOS framework cache | |
| if: steps.cache-detox-ios-framework.outputs.cache-hit != 'true' | |
| run: cd Example/e2etest && bunx detox build-framework-cache | |
| - name: Detox build (ios.sim.release) | |
| env: | |
| RNU_CLI_ROOT: ${{ github.workspace }}/react-native-update-cli | |
| run: cd Example/e2etest && E2E_PLATFORM=ios bunx detox build --configuration ios.sim.release | |
| - name: Detox test (ios.sim.release) | |
| env: | |
| RNU_CLI_ROOT: ${{ github.workspace }}/react-native-update-cli | |
| RNU_E2E_SKIP_PREPARE: 'true' | |
| run: cd Example/e2etest && E2E_PLATFORM=ios bunx detox test --configuration ios.sim.release |