From d1967b9b1b76bf78255ec46fd170ab14be62073d Mon Sep 17 00:00:00 2001 From: Wainer dos Santos Moschetta Date: Fri, 27 Sep 2024 17:09:21 -0300 Subject: [PATCH] workflows/libvirt: allow the e2e crio job to fail Let's keep it running for a while on CI, once it's stable we can remove the continue-on-error. Fixes #1981 Signed-off-by: Wainer dos Santos Moschetta --- .github/workflows/e2e_libvirt.yaml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/e2e_libvirt.yaml b/.github/workflows/e2e_libvirt.yaml index 98926519b..d903ef010 100644 --- a/.github/workflows/e2e_libvirt.yaml +++ b/.github/workflows/e2e_libvirt.yaml @@ -55,6 +55,8 @@ defaults: jobs: test: runs-on: ${{ inputs.runner }} + # TODO: remove this when the crio job gets stable + continue-on-error: ${{ inputs.container_runtime == 'crio' && true || false }} steps: - name: Checkout Code uses: actions/checkout@v4