Skip to content

Commit

Permalink
WIP: build action
Browse files Browse the repository at this point in the history
  • Loading branch information
Snawoot committed Oct 7, 2023
1 parent cf46e9e commit 8f5ae22
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: build

on:
workflow_dispatch:

jobs:
build:
runs-on: ubuntu-latest
steps:
-
name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
-
name: Build
run: >-
make -j $(nproc) allplus
NDK_CC_ARM64="$(ANDROID_NDK)/toolchains/llvm/prebuilt/linux-x86_64/bin/aarch64-linux-android21-clang"
NDK_CC_ARM="$(ANDROID_NDK)"/toolchains/llvm/prebuilt/linux-x86_64/bin/armv7a-linux-androideabi21-clang

0 comments on commit 8f5ae22

Please sign in to comment.