Skip to content

Commit

Permalink
Test libretro android build
Browse files Browse the repository at this point in the history
  • Loading branch information
alloncm committed Dec 21, 2024
1 parent dd2f7d9 commit 86b31e2
Showing 1 changed file with 13 additions and 2 deletions.
15 changes: 13 additions & 2 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,12 @@ jobs:
cache-directories: "/home/runner/.cargo/bin
C:\\Users\\runneradmin\\.cargo\\bin"

- uses: nttld/setup-ndk@v1
id: setup-ndk
with:
ndk-version: r25 # This is the minimum version rust supports
add-to-path: false

- name: install cargo make
run: cargo install --no-default-features --locked --version 0.37.23 cargo-make

Expand All @@ -46,5 +52,10 @@ jobs:
- name: Build sdl with debugger
run: cargo make sdl_dbg

- name: Build libretro
run: cargo make libretro_desktop
- name: Build libretro desktop
run: cargo make libretro_desktop

- name: Build libretro android
run: cargo make libretro_android
env:
ANDROID_NDK_HOME: ${{ steps.setup-ndk.outputs.ndk-path }}

0 comments on commit 86b31e2

Please sign in to comment.