From ccc21773f68ce6156e9770da675b3cceb46b477e Mon Sep 17 00:00:00 2001 From: Yegor Yefremov Date: Wed, 29 May 2024 20:24:12 +0200 Subject: [PATCH] .github/workflows/ndk.yml: add workflow for NDK build Signed-off-by: Yegor Yefremov --- .github/workflows/ndk.yml | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 .github/workflows/ndk.yml diff --git a/.github/workflows/ndk.yml b/.github/workflows/ndk.yml new file mode 100644 index 0000000..2b76f9f --- /dev/null +++ b/.github/workflows/ndk.yml @@ -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