Skip to content

feat: add rust-feature to build without including ffmpeg,livekit,… #123

feat: add rust-feature to build without including ffmpeg,livekit,…

feat: add rust-feature to build without including ffmpeg,livekit,… #123

Workflow file for this run

name: Android Build
on:
push:
branches:
- main
jobs:
build:
runs-on: self-hosted-ubuntu
container:
image: docker://kuruk/dcl-godot-android-builder:latest
steps:
- uses: actions/checkout@v4
- name: Setup Rust
run: |
echo $ANDROID_HOME
ls -la /root/
ls -la /root/.cargo/bin/
export PATH="/root/.cargo/bin:${PATH}"
rustup default stable
rustup target add aarch64-linux-android
rustup target add x86_64-linux-android
- name: Build
run: |
bash build-android-apk.sh
- uses: actions/upload-artifact@v3
if: success() || failure()
with:
name: Android APK
path: |
android.apk