[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH 04/18] gitlab-ci: Avoid to re-run "configure" in the device-crash
From: |
Alex Bennée |
Subject: |
[PATCH 04/18] gitlab-ci: Avoid to re-run "configure" in the device-crash-test jobs |
Date: |
Mon, 24 Apr 2023 10:22:35 +0100 |
From: Thomas Huth <thuth@redhat.com>
After "make check-venv" had been added to these jobs, they started
to re-run "configure" each time since our logic in the makefile
thinks that some files are out of date here. Avoid it with the same
trick that we are using in buildtest-template.yml already by disabling
the up-to-date check via NINJA=":".
Fixes: 1d8cf47e5b ("tests: run 'device-crash-test' from tests/venv")
Signed-off-by: Thomas Huth <thuth@redhat.com>
Message-Id: <20230414145845.456145-2-thuth@redhat.com>
Signed-off-by: Alex Bennée <alex.bennee@linaro.org>
---
.gitlab-ci.d/buildtest.yml | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/.gitlab-ci.d/buildtest.yml b/.gitlab-ci.d/buildtest.yml
index ba6f551752..333eea9dd3 100644
--- a/.gitlab-ci.d/buildtest.yml
+++ b/.gitlab-ci.d/buildtest.yml
@@ -102,7 +102,7 @@ crash-test-debian:
IMAGE: debian-amd64
script:
- cd build
- - make check-venv
+ - make NINJA=":" check-venv
- tests/venv/bin/python3 scripts/device-crash-test -q ./qemu-system-i386
build-system-fedora:
@@ -145,7 +145,7 @@ crash-test-fedora:
IMAGE: fedora
script:
- cd build
- - make check-venv
+ - make NINJA=":" check-venv
- tests/venv/bin/python3 scripts/device-crash-test -q ./qemu-system-ppc
- tests/venv/bin/python3 scripts/device-crash-test -q ./qemu-system-riscv32
--
2.39.2
- [PATCH 00/18] testing/next: avocado, docs (pre-PR), Alex Bennée, 2023/04/24
- [PATCH 01/18] tests/requirements.txt: bump up avocado-framework version to 101.0, Alex Bennée, 2023/04/24
- [PATCH 04/18] gitlab-ci: Avoid to re-run "configure" in the device-crash-test jobs,
Alex Bennée <=
- [PATCH 08/18] tests/avocado: Make ssh_command_output_contains() globally available, Alex Bennée, 2023/04/24
- [PATCH 05/18] scripts/device-crash-test: Add a parameter to run with TCG only, Alex Bennée, 2023/04/24
- [PATCH 03/18] tests/avocado: Add set of boot tests on SBSA-ref, Alex Bennée, 2023/04/24
- [PATCH 02/18] tests/avocado: use the new snapshots for testing, Alex Bennée, 2023/04/24
- [PATCH 07/18] .gitlab-ci.d/cirrus: Drop the CI job for compiling with FreeBSD 12, Alex Bennée, 2023/04/24
- [PATCH 06/18] qemu-options: finesse the recommendations around -blockdev, Alex Bennée, 2023/04/24
- [PATCH 15/18] docs/system: remove excessive punctuation from guest-loader docs, Alex Bennée, 2023/04/24
- [PATCH 12/18] tests/avocado/tuxrun_baselines.py: improve code coverage for ppc64, Alex Bennée, 2023/04/24
- [PATCH 09/18] tests/avocado/machine_aspeed: Fix the broken ast2[56]00_evb_sdk tests, Alex Bennée, 2023/04/24