From 571c0c6291c690fd15bd6217614133559435abae Mon Sep 17 00:00:00 2001 From: Richard Lau Date: Mon, 4 Nov 2024 19:31:31 +0000 Subject: [PATCH] jenkins: skip freebsd12 on Node.js >=22 Refs: https://github.com/nodejs/build/issues/3593 Refs: https://github.com/nodejs/node/issues/54576 --- jenkins/scripts/VersionSelectorScript.groovy | 1 + 1 file changed, 1 insertion(+) diff --git a/jenkins/scripts/VersionSelectorScript.groovy b/jenkins/scripts/VersionSelectorScript.groovy index 0fdad71f3..98d7815a4 100644 --- a/jenkins/scripts/VersionSelectorScript.groovy +++ b/jenkins/scripts/VersionSelectorScript.groovy @@ -71,6 +71,7 @@ def buildExclusions = [ // FreeBSD ----------------------------------------------- [ /^freebsd12/, anyType, gte(22) ], + [ /^freebsd13/, anyType, gte(22) ], // https://github.com/nodejs/node/issues/54576 // Shared libs docker containers ------------------------- [ /sharedlibs_debug_x64/, anyType, gte(18) ],