From f3c37f3d68b76dcded39e7d6fbc5c0df21354c9b Mon Sep 17 00:00:00 2001 From: Alberto Faria Date: Tue, 23 Apr 2024 06:55:40 +0100 Subject: [PATCH] Disable testing farm tests Our test harness now requires nested virt, but test farm runners are themselves VMs and do not support KVM, so the harness is effectively unusable in testing farm right now. Signed-off-by: Alberto Faria --- .fmf/version | 1 - .packit.yaml | 20 -------------------- plans/main.fmf | 28 ---------------------------- 3 files changed, 49 deletions(-) delete mode 100644 .fmf/version delete mode 100644 plans/main.fmf diff --git a/.fmf/version b/.fmf/version deleted file mode 100644 index d00491f..0000000 --- a/.fmf/version +++ /dev/null @@ -1 +0,0 @@ -1 diff --git a/.packit.yaml b/.packit.yaml index 7fa734e..c110485 100644 --- a/.packit.yaml +++ b/.packit.yaml @@ -38,23 +38,3 @@ jobs: owner: rhcontainerbot project: podman-next enable_net: true - - # Unit tests - - job: tests - trigger: pull_request - skip_build: true - targets: - - fedora-all-aarch64 - - fedora-all-x86_64 - identifier: unit_test - tmt_plan: "/plans/unit_test" - - # Validate test - - job: tests - trigger: pull_request - skip_build: true - targets: - # Only need to test on one target - - fedora-latest-stable-x86_64 - identifier: validate_test - tmt_plan: "/plans/validate_test" diff --git a/plans/main.fmf b/plans/main.fmf deleted file mode 100644 index d9bd438..0000000 --- a/plans/main.fmf +++ /dev/null @@ -1,28 +0,0 @@ -prepare: - - name: Install dependencies - how: install - package: - - cargo - - clippy - - guestfs-tools - - libselinux-devel - - make - - podman - - qemu-img - - rustfmt - - name: Set up libvirt - how: shell - script: - - sudo systemctl start virtqemud - -/test: - summary: Test - execute: - how: tmt - script: PATH=$PATH:/root/.cargo/bin make test - -/lint: - summary: Lint - execute: - how: tmt - script: make lint