Skip to content

Commit 7544a94

Browse files
committed
ci: add build workflow
1 parent d65eb2e commit 7544a94

1 file changed

Lines changed: 30 additions & 0 deletions

File tree

.github/workflows/build.yml

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
name: Build
2+
3+
on:
4+
workflow_dispatch:
5+
6+
jobs:
7+
setup-and-build:
8+
runs-on: ubuntu-latest
9+
10+
env:
11+
NDK_VERSION: r26d
12+
13+
steps:
14+
- name: Checkout repository
15+
uses: actions/checkout@v4
16+
17+
- name: Build for all architectures
18+
run: |
19+
chmod +x ./build.sh
20+
./build.sh
21+
22+
- name: Upload build artifacts
23+
uses: actions/upload-artifact@v4
24+
with:
25+
name: ndk-build-artifacts
26+
path: |
27+
build-arm64/install
28+
build-arm/install
29+
build-x86/install
30+
build-x86_64/install

0 commit comments

Comments
 (0)