Skip to content

Try using cargo-ndk plugin; add serde derive feature (how did this wo… #12

Try using cargo-ndk plugin; add serde derive feature (how did this wo…

Try using cargo-ndk plugin; add serde derive feature (how did this wo… #12

Workflow file for this run

name: Android CI
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: set up JDK 17
uses: actions/setup-java@v3
with:
java-version: '17'
distribution: 'temurin'
cache: gradle
- name: Grant execute permission for gradlew
run: chmod +x gradlew
working-directory: android
- name: Install cargo-ndk
run: cargo install cargo-ndk
- name: Build with Gradle
run: ./gradlew build
working-directory: android