Skip to content

Commit

Permalink
github-actions: add workflow for NDK build
Browse files Browse the repository at this point in the history
Signed-off-by: Yegor Yefremov <[email protected]>
  • Loading branch information
yegorich authored and marckleinebudde committed May 29, 2024
1 parent 47ac762 commit 1222f8d
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions .github/workflows/ndk.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
name: NDK

on: [push, pull_request]

jobs:
build:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4

- name: CMake and NDK
run: |
cmake -DCMAKE_BUILD_TYPE=Debug -DENABLE_WERROR=ON -DCMAKE_TOOLCHAIN_FILE=$ANDROID_NDK/build/cmake/android.toolchain.cmake -B build
cmake --build build

0 comments on commit 1222f8d

Please sign in to comment.