Skip to content

Create main.rs

Create main.rs #65

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
steps:
- uses: actions/checkout@v3
- 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@v3
with:
name: native-lib-${{ matrix.android-abi }}
path: jniLibs
build-apks:
needs: build-native-libs
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/download-artifact@v3
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@v3
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@v3
with:
name: ruffle-debug-apk
path: app/ruffle/build/outputs/apk/debug/ruffle-arm64-v8a-debug.apk
- name: Decode keystore
if: ${{ !github.event.pull_request.head.repo.fork }}
env:
ENCODED_STRING: ${{ secrets.KEYSTORE }}
run: |
echo $ENCODED_STRING > 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.KEY_ALIAS }}
SIGNING_KEY_PASSWORD: ${{ secrets.KEY_PASSWORD }}
SIGNING_STORE_PASSWORD: ${{ secrets.STORE_PASSWORD }}
- uses: actions/upload-artifact@v3
if: ${{ !github.event.pull_request.head.repo.fork }}
with:
name: ruffle-release-apks
path: app/ruffle/build/outputs/apk/release/*.apk