Test V8 on Android nightly #2
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
name: Test V8 on Android nightly | |
on: | |
pull_request: | |
paths: | |
- .github/workflows/build-v8-nightly.yml | |
schedule: | |
- cron: '37 19 * * *' | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
concurrency: | |
group: build-v8-${{ github.ref }} | |
cancel-in-progress: true | |
steps: | |
- name: Check out | |
uses: actions/checkout@v3 | |
with: | |
path: 'reanimated_repo' | |
- name: Create React Native app | |
run: npx react-native init app | |
- name: Install dependencies | |
working-directory: app | |
run: yarn add github:software-mansion/react-native-reanimated#${{ github.ref }} react-native-v8 v8-android-jit | |
- name: Configure V8 | |
run: node reanimated_repo/.github/workflows/helper/configureV8.js | |
- name: Build Android app | |
working-directory: app/android | |
run: ./gradlew assembleDebug --console=plain |