Result of running copy_from_upstream on commit bac716cc91c53529e3fad8… #132
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: android build | |
on: [push, pull_request] | |
jobs: | |
android: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
abi: [armeabi-v7a, arm64-v8a, x86, x86_64] | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
- name: Build project | |
run: ./scripts/build-android.sh $ANDROID_NDK_HOME -a ${{ matrix.abi }} |