.github/workflows/ndk.yml: add workflow for NDK build

Signed-off-by: Yegor Yefremov <yegorslists@googlemail.com>
pull/543/head
Yegor Yefremov 2024-05-29 20:24:12 +02:00
parent bfcf548f97
commit ccc21773f6
1 changed files with 13 additions and 0 deletions

13
.github/workflows/ndk.yml vendored 100644
View File

@ -0,0 +1,13 @@
name: Build against NDK
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: CMake and NDK
run: cmake -B build -DCMAKE_TOOLCHAIN_FILE=$ANDROID_NDK/build/cmake/android.toolchain.cmake && cmake --build build