name: Build susfs on: push: branches: [ "mian" ] paths: - '.github/workflows/susfs.yml' - 'userspace/susfs/**' workflow_dispatch: workflow_call: inputs: target: required: true type: string os: required: false type: string default: self-hosted jobs: build-susfs: name: Build userspace susfs runs-on: ubuntu-latest steps: - name: Checkout code uses: actions/checkout@v4 with: fetch-depth: 0 - name: Build susfs working-directory: ./userspace/susfs run: | $ANDROID_NDK_HOME/ndk-build - name: Upload a Build Artifact uses: actions/upload-artifact@v4 with: name: susfs-aarch64-linux-android path: ./userspace/susfs/libs