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_dispatch:
jobs:
build-susfsd:
build-susfs:
strategy:
matrix:
include:
@@ -28,13 +28,27 @@ jobs:
target: ${{ matrix.target }}
os: ${{ matrix.os }}
build-ksud:
needs: build-susfsd
build-kpmmgr:
needs: build-susfs
strategy:
matrix:
include:
- target: aarch64-linux-android
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
with:
target: ${{ matrix.target }}