Web build with emscripten #932
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 CI | |
on: | |
release: | |
types: [published] | |
push: | |
branches: ['main'] | |
pull_request: | |
workflow_dispatch: | |
jobs: | |
android-build: | |
name: Build android apk for - ${{ matrix.config.arch }} | |
runs-on: ubuntu-24.04 | |
strategy: | |
fail-fast: false | |
matrix: | |
config: | |
- arch: armeabi-v7a | |
- arch: arm64-v8a | |
- arch: x86 | |
- arch: x86_64 | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: '0' | |
# NOTE: meson has no dependencies, so --break-system-packages doesn't really break anything! | |
- name: Setup Meson | |
run: | | |
pip install meson --break-system-packages | |
- name: Setup ninja | |
run: | | |
sudo apt-get update | |
sudo apt-get install ninja-build jq -y --no-install-recommends | |
- name: Setup JDK | |
uses: actions/setup-java@v4 | |
with: | |
distribution: 'temurin' | |
java-version: '21' | |
- name: Setup Android SDK | |
uses: android-actions/setup-android@v3 | |
- name: Setup NDK | |
run: | | |
sdkmanager --install "ndk;28.0.12433566" | |
- name: Build native libraries | |
run: | | |
bash ./platforms/build-android.sh ${{ matrix.config.arch }} complete_rebuild release | |
cp -r ./assets/ platforms/android/app/src/main | |
- name: Build APK | |
run: | | |
cd platforms/android/ | |
./gradlew assembleDebug --no-daemon -PANDROID_ABI=${{ matrix.config.arch }} | |
- name: Upload artifacts | |
uses: actions/upload-artifact@v4 | |
with: | |
name: oopetris.${{ matrix.config.arch }}.apk | |
path: platforms/android/app/build/outputs/apk/debug/app-*-debug.apk | |
- uses: wangyucode/[email protected] | |
name: Deploy | |
if: github.event_name != 'pull_request' | |
with: | |
host: fdroid.oopetris.totto.lt | |
port: ${{ vars.FDROID_FTP_PORT }} | |
username: ${{ vars.FDROID_FTP_USER }} | |
password: ${{ secrets.FDROID_FTP_PASSWORD }} | |
compress: true | |
localDir: platforms/android/app/build/outputs/apk/debug/ | |
remoteDir: /repo | |
exclude: '/output-metadata.json' | |
forceUpload: true | |
removeExtraFilesOnServer: false |