From f34c142e8bd2ab7792300f3f1bd8d5c673733d35 Mon Sep 17 00:00:00 2001 From: Richard Lau Date: Wed, 13 Apr 2022 20:49:46 +0100 Subject: [PATCH] jenkins: only run sharedlibs_debug_x64 pre-18 Full debug x64 builds have been unreliable in the CI in the sharedlibs containers and were recently "turned off" by making the job a no-op. However the job was still being started even if it didn't do anything but pass -- this change prevents Jenkins from starting `sharedlibs_debug_x64` runs. Refs: https://github.com/nodejs/build/issues/2837 --- jenkins/scripts/VersionSelectorScript.groovy | 1 + 1 file changed, 1 insertion(+) diff --git a/jenkins/scripts/VersionSelectorScript.groovy b/jenkins/scripts/VersionSelectorScript.groovy index 54e20d575..cf6ed423c 100644 --- a/jenkins/scripts/VersionSelectorScript.groovy +++ b/jenkins/scripts/VersionSelectorScript.groovy @@ -110,6 +110,7 @@ def buildExclusions = [ // Shared libs docker containers ------------------------- [ /ubi81_sharedlibs/, anyType, lt(13) ], + [ /sharedlibs_debug_x64/, anyType, gte(18) ], [ /sharedlibs_openssl3/, anyType, lt(15) ], [ /sharedlibs_openssl111/, anyType, lt(11) ], [ /sharedlibs_openssl110/, anyType, lt(9) ],