From 5c02fdbd642c3fa2b23c67571c60c8ae8da1ba85 Mon Sep 17 00:00:00 2001 From: Anton Hvornum Date: Tue, 14 May 2024 13:19:52 +0200 Subject: [PATCH] Attempting to grab artifact from build job --- .github/workflows/qemu-tests.yaml | 20 +++++++++++++++----- 1 file changed, 15 insertions(+), 5 deletions(-) diff --git a/.github/workflows/qemu-tests.yaml b/.github/workflows/qemu-tests.yaml index f0dc6c1d..50ff45e5 100644 --- a/.github/workflows/qemu-tests.yaml +++ b/.github/workflows/qemu-tests.yaml @@ -3,6 +3,11 @@ name: Runs Qemu test case pci_emulation on: + workflow_run: + workflows: ["Build Arch ISO with ArchInstall Commit"] + branches: [main, test-cases] + types: + - completed push: branches: - master @@ -24,10 +29,15 @@ jobs: runs-on: self-hosted steps: - 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: tree - - run: whoami -# - uses: actions/upload-artifact@v4 -# with: -# name: Arch Live ISO -# path: /tmp/archlive/out/*.iso + - uses: actions/upload-artifact@v4 + with: + name: archtest-pci_emulation + path: ./demo.cast