From d718af725324efcca017a14d22e28812b3ed8083 Mon Sep 17 00:00:00 2001 From: BuShe Pie Date: Mon, 5 Feb 2024 04:37:10 +0000 Subject: [PATCH] build: implement `build android` workflow --- .github/workflows/build-android.yaml | 62 ++++++++++++++++++++++++++++ 1 file changed, 62 insertions(+) create mode 100644 .github/workflows/build-android.yaml diff --git a/.github/workflows/build-android.yaml b/.github/workflows/build-android.yaml new file mode 100644 index 00000000000000..15055383aac468 --- /dev/null +++ b/.github/workflows/build-android.yaml @@ -0,0 +1,62 @@ +name: Build Android + +on: + workflow_dispatch: + inputs: + ndkVersion: + description: Android NDK Version (e.g., r26b) + required: true + default: r26b + pull_request: + types: [opened, synchronize, reopened, ready_for_review] + paths-ignore: + - .mailmap + - '**.md' + - AUTHORS + - doc/** + - .github/** + - '!.github/workflows/android_ci.yml' + push: + branches: + - main + - v[0-9]+.x-staging + - v[0-9]+.x + paths-ignore: + - .mailmap + - '**.md' + - AUTHORS + - doc/** + - .github/** + - '!.github/workflows/android_ci.yml' + +concurrency: + group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }} + cancel-in-progress: true + +env: + PYTHON_VERSION: '3.11' + ARCH: x86_64 + API_LEVEL: '34' + +permissions: + contents: read + +jobs: + android-build: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + with: + persist-credentials: false + - name: Set up Python ${{ env.PYTHON_VERSION }} + uses: actions/setup-python@v2 + with: + python-version: ${{ env.PYTHON_VERSION }} + - name: Download Android NDK + run: | + wget https://dl.google.com/android/repository/android-ndk-${{ github.event.inputs.ndkVersion }}-linux.zip + unzip android-ndk-${{ github.event.inputs.ndkVersion }}-linux.zip -d ${{ github.workspace }} + echo "NDK_PATH=${{ github.workspace }}/android-ndk-${{ github.event.inputs.ndkVersion }}" >> $GITHUB_ENV + - name: Configure and Build + run: | + ./android-configure $NDK_PATH $API_LEVEL $ARCH && make -j4