Update the build workflow to rename build tasks and add new build dependencies
This commit is contained in:
20
.github/workflows/build-manager.yml
vendored
20
.github/workflows/build-manager.yml
vendored
@@ -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 }}
|
||||
|
||||
Reference in New Issue
Block a user