Skip to content

Commit

Permalink
add android build action.
Browse files Browse the repository at this point in the history
  • Loading branch information
wangzhaode committed Sep 15, 2023
1 parent e430902 commit 618508b
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/android-cpu.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: android-cpu
on:
push:
branches:
- master
- 'feature/**'
paths:
- 'src/**'
- '.github/workflows/android-cpu.yml'
pull_request:
branches: [master]
paths:
- 'src/**'
- '.github/workflows/android-cpu.yml'

concurrency:
group: android-${{ github.ref }}
cancel-in-progress: true
permissions:
contents: read

jobs:
android_build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: build
run: ./script/android_build.sh

0 comments on commit 618508b

Please sign in to comment.