From 0cb941be183871e51ef565a98cb4478026ec33ad Mon Sep 17 00:00:00 2001 From: Richard Lau Date: Wed, 6 Nov 2024 13:02:46 +0000 Subject: [PATCH] jenkins: skip freebsd13 on Node.js >=22 (#3949) 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) ],