Update the build workflow to rename build tasks and add new build dependencies

This commit is contained in:
ShirkNeko
2025-04-19 20:01:41 +08:00
parent d73af38bf4
commit 9919d573fe

View File

@@ -17,7 +17,7 @@ on:
workflow_call: workflow_call:
workflow_dispatch: workflow_dispatch:
jobs: jobs:
build-susfsd: build-susfs:
strategy: strategy:
matrix: matrix:
include: include:
@@ -28,13 +28,27 @@ jobs:
target: ${{ matrix.target }} target: ${{ matrix.target }}
os: ${{ matrix.os }} os: ${{ matrix.os }}
build-ksud: build-kpmmgr:
needs: build-susfsd needs: build-susfs
strategy: strategy:
matrix: matrix:
include: include:
- target: aarch64-linux-android - target: aarch64-linux-android
os: ubuntu-latest os: ubuntu-latest
uses: ./.github/workflows/kpmmgr.yml
with:
target: ${{ matrix.target }}
os: ${{ matrix.os }}
build-ksud:
needs: build-kpmmgr
strategy:
matrix:
include:
- target: aarch64-linux-android
os: ubuntu-latest
- target: x86_64-linux-android
os: ubuntu-latest
uses: ./.github/workflows/ksud.yml uses: ./.github/workflows/ksud.yml
with: with:
target: ${{ matrix.target }} target: ${{ matrix.target }}