From abb6b3a0238bd007648858ef93fcfc4385bd8ba1 Mon Sep 17 00:00:00 2001 From: stevenhorsman Date: Thu, 5 Dec 2024 14:50:32 +0000 Subject: [PATCH] workflow: Actually temporarily skip the s390x e2e tests I realised too late that adding a `false` to a list of or's does nothing. I wanted to preserve the code, but we can just revert, so it was pointless. Sorry! Signed-off-by: stevenhorsman --- .github/workflows/e2e_run_all.yaml | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/.github/workflows/e2e_run_all.yaml b/.github/workflows/e2e_run_all.yaml index 91193ea9a..4d1ebfdba 100644 --- a/.github/workflows/e2e_run_all.yaml +++ b/.github/workflows/e2e_run_all.yaml @@ -266,12 +266,7 @@ jobs: libvirt_s390x: name: E2E tests on libvirt for the s390x architecture # Skip s390x e2e tests until Choi is available to set-up the s390x runner's pre-action properly. Then revert this. - if: | - false || - github.event_name == 'schedule' || - github.event_name == 'workflow_dispatch' || - contains(github.event.pull_request.labels.*.name, 'test_e2e_libvirt') || - contains(github.event.pull_request.labels.*.name, 'test_e2e_libvirt_s390x') + if: false needs: [podvm_mkosi_s390x, libvirt_e2e_arch_prep, caa_image_s390x] strategy: fail-fast: false