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
35 lines
777 B
YAML
35 lines
777 B
YAML
name: Build susfsd aarch64
|
|
on:
|
|
push:
|
|
branches: [ "next" ]
|
|
paths:
|
|
- '.github/workflows/susfsd.yml'
|
|
- 'userspace/susfsd/**'
|
|
workflow_dispatch:
|
|
workflow_call:
|
|
inputs:
|
|
target:
|
|
required: true
|
|
type: string
|
|
os:
|
|
required: false
|
|
type: string
|
|
default: ubuntu-latest
|
|
jobs:
|
|
build-susfs:
|
|
name: Build userspace susfsd
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
with:
|
|
fetch-depth: 0
|
|
- name: Build susfsd
|
|
working-directory: ./userspace/susfsd
|
|
run: $ANDROID_NDK/ndk-build
|
|
- name: Upload arm64 Build Artifact
|
|
uses: actions/upload-artifact@v4
|
|
with:
|
|
name: susfsd-aarch64-linux-android
|
|
path: ./userspace/susfsd/libs
|
|
|