-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
autorun: add nvme testing if unittests pass
Signed-off-by: Jim Harris <[email protected]> Change-Id: I6b616e8a8749803c9393d2dfd6e643cb56348b28
- Loading branch information
Showing
3 changed files
with
46 additions
and
17 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -51,7 +51,7 @@ jobs: | |
|
||
autorun_unittest: | ||
needs: source-archive | ||
timeout-minutes: 15 | ||
timeout-minutes: 30 | ||
runs-on: [self-hosted, linux, x64, qemuhost] | ||
env: | ||
REPOSITORY_TARBALL_PATH: ${{ github.workspace }}/repository.tar.gz | ||
|
@@ -96,14 +96,33 @@ jobs: | |
--workflow workflows/autorun_in_qemu.yaml \ | ||
--output report_prep_guest | ||
- name: qemu-guest, autorun | ||
- name: qemu-guest, autorun_unittest | ||
run: | | ||
cd ci/cijoe | ||
cijoe autorun output_listing retrieve_autorun_output guest_shutdown \ | ||
cijoe autorun_unittest \ | ||
--monitor \ | ||
--config configs/qemuhost-with-guest-fedora-40.toml \ | ||
--workflow workflows/autorun_in_qemu.yaml \ | ||
--output report_autorun | ||
--output report_autorun_unittest | ||
- name: qemu-guest, autorun_nvme | ||
run: | | ||
cd ci/cijoe | ||
cijoe autorun_nvme \ | ||
--monitor \ | ||
--config configs/qemuhost-with-guest-fedora-40.toml \ | ||
--workflow workflows/autorun_in_qemu.yaml \ | ||
--output report_autorun_nvme | ||
- name: qemu-guest, cleanup | ||
if: always() | ||
run: | | ||
cd ci/cijoe | ||
cijoe output_listing retrieve_autorun_output guest_shutdown \ | ||
--monitor \ | ||
--config configs/qemuhost-with-guest-fedora-40.toml \ | ||
--workflow workflows/autorun_in_qemu.yaml \ | ||
--output report_cleanup | ||
- name: Upload Artifacts | ||
uses: actions/[email protected] | ||
|
@@ -117,7 +136,9 @@ jobs: | |
if: always() | ||
with: | ||
path: | | ||
ci/cijoe/report_autorun | ||
ci/cijoe/report_autorun_nvme | ||
ci/cijoe/report_autorun_unittest | ||
ci/cijoe/report_cleanup | ||
ci/cijoe/report_prep_guest | ||
name: report-autorun-in-qemu | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters