Skip to content

Commit a5c4d71

Browse files
committed
test andorid action
1 parent b52b7a0 commit a5c4d71

File tree

1 file changed

+27
-0
lines changed

1 file changed

+27
-0
lines changed

.github/workflows/android/yuv.yml

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
on:
2+
# push:
3+
# branches: [master]
4+
workflow_dispatch:
5+
pull_request:
6+
branches: [master]
7+
8+
name: Andorid-YUV
9+
10+
jobs:
11+
build:
12+
name: compile android yuv then deploy
13+
runs-on: macos-14
14+
env:
15+
GH_TOKEN: ${{ github.token }}
16+
steps:
17+
- name: Checkout code
18+
uses: actions/checkout@v4
19+
- uses: nttld/setup-ndk@v1
20+
id: setup-ndk
21+
with:
22+
ndk-version: r21e
23+
add-to-path: false
24+
- name: One Step
25+
run: echo "$ANDROID_NDK_HOME"
26+
env:
27+
ANDROID_NDK_HOME: ${{ steps.setup-ndk.outputs.ndk-path }}

0 commit comments

Comments
 (0)