fix: excluded libreactnative.so (#506) #654
Workflow file for this run
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: Build Android | |
on: | |
push: | |
branches: | |
- main | |
- 0.x | |
paths: | |
- '.github/workflows/build-android.yml' | |
- 'android/**' | |
- 'example/android/**' | |
- 'bun.lockb' | |
- 'example/bun.lockb' | |
pull_request: | |
paths: | |
- '.github/workflows/build-android.yml' | |
- 'android/**' | |
- 'example/android/**' | |
- 'bun.lockb' | |
- 'example/bun.lockb' | |
jobs: | |
build_android_example: | |
name: Build Android Example App | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Code | |
uses: actions/checkout@v4 | |
- name: Clear up some disk space | |
run: | | |
sudo rm -rf /usr/share/dotnet | |
sudo rm -rf /opt/ghc | |
- name: Setup Bun | |
uses: oven-sh/setup-bun@v2 | |
with: | |
bun-version: 1.1.26 | |
- name: Setup JDK | |
uses: actions/setup-java@v4 | |
with: | |
distribution: zulu | |
java-version: 17 | |
cache: gradle | |
- name: Setup Android SDK | |
uses: android-actions/setup-android@v3 | |
with: | |
accept-android-sdk-licenses: true | |
log-accepted-android-sdk-licenses: false | |
- name: Bootstrap JS (rnqc) | |
run: | | |
bun install | |
- name: Bootstrap JS (example) | |
working-directory: example | |
run: | | |
bun install | |
- name: Restore Gradle cache | |
uses: actions/cache@v4 | |
with: | |
path: | | |
~/.gradle/caches | |
~/.gradle/wrapper | |
key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle*', '**/gradle-wrapper.properties') }} | |
restore-keys: | | |
${{ runner.os }}-gradle- | |
- name: Run Gradle Build for example/android/ | |
run: cd example/android && ./gradlew assembleDebug --build-cache && cd ../.. |