From aa692c89f993184386e5aa849af10ecfb594296f Mon Sep 17 00:00:00 2001 From: Gavin Didrichsen Date: Wed, 23 Oct 2024 16:10:35 +0100 Subject: [PATCH] (CAT-2122) Temporarily exclude the windows 2019, ruby 3.2 acceptance test. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Our current daily nightly summary includes a failure on the pdk acceptance test that has been occurring for some months, specifically the windows 2019, ruby 3.2 one. Although we are aware that this error is indeed outstanding and occurs every day, the problem is that it can easily “hide” a valid error that we need to fix. This PR temporarily disables this test until the CAT-2122 ticket addresses and fixes the test. When fixed, then this PR will be rolled back. Signed-off-by: Gavin Didrichsen --- .github/workflows/nightly.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/nightly.yml b/.github/workflows/nightly.yml index 25e583a93..3574b97ad 100644 --- a/.github/workflows/nightly.yml +++ b/.github/workflows/nightly.yml @@ -38,6 +38,10 @@ jobs: ruby_version: - "2.7" - "3.2" + # TEMPORARILY exclude the following until CAT-2122 is resolved + exclude: + - os: "windows-2019" + ruby_version: "3.2" include: - puppet_gem_version: "~> 7.0" ruby_version: "2.7"