You've already forked KernelSU-Next
mirror of
https://github.com/KernelSU-Next/KernelSU-Next.git
synced 2025-08-27 23:46:34 +00:00
Co-authored-by: ShirkNeko <109797057+ShirkNeko@users.noreply.github.com> Co-authored-by: liankong <xhsw.new@qq.com> Signed-off-by: ShirkNeko <109797057+ShirkNeko@users.noreply.github.com>
41 lines
830 B
YAML
41 lines
830 B
YAML
name: Build kpmmgr
|
|
|
|
on:
|
|
push:
|
|
branches: [ "mian" ]
|
|
paths:
|
|
- '.github/workflows/kpmmgr.yml'
|
|
- 'userspace/kpmmgr/**'
|
|
workflow_dispatch:
|
|
workflow_call:
|
|
inputs:
|
|
target:
|
|
required: true
|
|
type: string
|
|
os:
|
|
required: false
|
|
type: string
|
|
default: self-hosted
|
|
|
|
jobs:
|
|
build-susfs:
|
|
name: Build userspace kpmmgr
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- name: Checkout code
|
|
uses: actions/checkout@v4
|
|
with:
|
|
fetch-depth: 0
|
|
|
|
- name: Build kpmmgr
|
|
working-directory: ./userspace/kpmmgr
|
|
run: |
|
|
$ANDROID_NDK_HOME/ndk-build
|
|
|
|
- name: Upload a Build Artifact
|
|
uses: actions/upload-artifact@v4
|
|
with:
|
|
name: kpmmgr-aarch64-linux-android
|
|
path: ./userspace/kpmmgr/libs
|