Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
25 changes: 25 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -85,3 +85,28 @@ jobs:
# ln -s ~/VulkanSDK/latest/macOS/lib/MoltenVK.xcframework
# xcodebuild -scheme examples-ios build CODE_SIGNING_ALLOWED=NO
# xcodebuild -scheme examples-macos build

build_android:
name: "Build Android"
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
with:
submodules: "recursive"

- name: Install JDK
uses: actions/setup-java@v4
with:
java-version: "21"
distribution: "zulu"
cache: gradle

- name: ccache
uses: hendrikmuhs/ccache-action@v1.2.9
with:
key: ${{ github.job }}-android

- name: Build
working-directory: android
run: NDK_CCACHE=1 NDK_CCACHE_BIN=ccache ./gradlew assembleDebug --info
Loading
Loading