Attempting to grab artifact from build job
This commit is contained in:
parent
adaef17735
commit
5c02fdbd64
|
|
@ -3,6 +3,11 @@
|
||||||
name: Runs Qemu test case pci_emulation
|
name: Runs Qemu test case pci_emulation
|
||||||
|
|
||||||
on:
|
on:
|
||||||
|
workflow_run:
|
||||||
|
workflows: ["Build Arch ISO with ArchInstall Commit"]
|
||||||
|
branches: [main, test-cases]
|
||||||
|
types:
|
||||||
|
- completed
|
||||||
push:
|
push:
|
||||||
branches:
|
branches:
|
||||||
- master
|
- master
|
||||||
|
|
@ -24,10 +29,15 @@ jobs:
|
||||||
runs-on: self-hosted
|
runs-on: self-hosted
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v4
|
- uses: actions/checkout@v4
|
||||||
|
- uses: actions/download-artifact@master
|
||||||
|
with:
|
||||||
|
name: Arch Live ISO
|
||||||
|
path: /tmp/archlive/out/*.iso
|
||||||
|
- run: cd tests/qemu
|
||||||
|
- run: echo '' > serial.log
|
||||||
- run: pwd
|
- run: pwd
|
||||||
- run: tree
|
- run: tree
|
||||||
- run: whoami
|
- uses: actions/upload-artifact@v4
|
||||||
# - uses: actions/upload-artifact@v4
|
with:
|
||||||
# with:
|
name: archtest-pci_emulation
|
||||||
# name: Arch Live ISO
|
path: ./demo.cast
|
||||||
# path: /tmp/archlive/out/*.iso
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue