Skip to content

Add files via upload #2

Add files via upload

Add files via upload #2

Workflow file for this run

name: Build
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
workflow_dispatch:
env:
CARGO_TERM_COLOR: always
jobs:
build-native-libs:
runs-on: ubuntu-latest
strategy:
matrix:
include:
- android-abi: arm64-v8a
rust-target: aarch64-linux-android
- android-abi: armeabi-v7a
rust-target: armv7-linux-androideabi
- android-abi: x86_64
rust-target: x86_64-linux-android
- android-abi: x86
rust-target: i686-linux-android
steps:
- uses: actions/checkout@v4
- name: Add Android target to Rust
run: rustup target add ${{ matrix.rust-target }}
- name: Update Rust
run: rustup update
- name: Install cargo-ndk
run: cargo install cargo-ndk
- name: Build native libs
run: |
unset ANDROID_SDK_ROOT # Deprecated, will cause an error if left set.
cd native
cargo ndk --target ${{ matrix.android-abi }} --platform 26 -o ../jniLibs build --release
- uses: actions/upload-artifact@v4
with:
name: native-lib-${{ matrix.android-abi }}
path: jniLibs
build-apks:
needs: build-native-libs
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/download-artifact@v4
with: # no name set, so all artifacts are downloaded
path: native-libs
- name: Copy native libs
run: |
mkdir app/ruffle/src/main/jniLibs
cp -r native-libs/*/* app/ruffle/src/main/jniLibs/
- name: Set up Java 17
uses: actions/setup-java@v4
with:
distribution: 'temurin'
java-version: '17'
- name: Build debug APK
# The native libs are always built in release mode, this is left in here just so if
# something with the signing procedure below goes haywire, we still have something.
run: |
cd app
./gradlew assembleDebug # The release version doesn't work without signing
- uses: actions/upload-artifact@v4
with:
name: ruffle-debug-apks
path: app/ruffle/build/outputs/apk/debug/*.apk
- name: Decode keystore
if: ${{ !github.event.pull_request.head.repo.fork }}
env:
ENCODED_STRING: ${{ secrets.KEYSTORE }}
run: |
echo $ENCODED_STRING | base64 -di > app/ruffle/androidkey.jks
- name: Build release APK
if: ${{ !github.event.pull_request.head.repo.fork }}
run: |
cd app
./gradlew assembleRelease
env:
SIGNING_KEY_ALIAS: ${{ secrets.SIGNING_KEY_ALIAS }}
SIGNING_KEY_PASSWORD: ${{ secrets.SIGNING_KEY_PASSWORD }}
SIGNING_STORE_PASSWORD: ${{ secrets.SIGNING_STORE_PASSWORD }}
- uses: actions/upload-artifact@v4
if: ${{ !github.event.pull_request.head.repo.fork }}
with:
name: ruffle-release-apks
path: app/ruffle/build/outputs/apk/release/*.apk