Figuring out github workflow job dependencies
This commit is contained in:
parent
3f07bb41f5
commit
83671b41eb
|
|
@ -38,4 +38,7 @@ jobs:
|
||||||
name: Arch Live ISO
|
name: Arch Live ISO
|
||||||
path: /tmp/archlive/out/*.iso
|
path: /tmp/archlive/out/*.iso
|
||||||
call-workflow-qemu-test:
|
call-workflow-qemu-test:
|
||||||
|
permissions:
|
||||||
|
contents: read
|
||||||
|
pull-requests: write
|
||||||
uses: ./.github/workflows/qemu-tests.yaml
|
uses: ./.github/workflows/qemu-tests.yaml
|
||||||
|
|
@ -3,6 +3,11 @@ name: Runs Qemu test case pci_emulation
|
||||||
# This job is callewd from iso-build
|
# This job is callewd from iso-build
|
||||||
on:
|
on:
|
||||||
workflow_call:
|
workflow_call:
|
||||||
|
workflow_run:
|
||||||
|
workflows: ["Build Arch ISO with ArchInstall Commit"]
|
||||||
|
branches: [main, test-cases]
|
||||||
|
types:
|
||||||
|
- completed
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
run-qemu:
|
run-qemu:
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue