Skip to content

Commit

Permalink
jenkins: exclude ubuntu1804-arm64 for Node.js 20 (#3699)
Browse files Browse the repository at this point in the history
The minimum supported gcc compiler for Node.js 20 is gcc 10.
  • Loading branch information
richardlau committed May 3, 2024
1 parent 437f7e3 commit 8f4f16f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion jenkins/scripts/VersionSelectorScript.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ def buildExclusions = [
[ /^centos7-ppcle/, anyType, gte(18) ],

// ARM --------------------------------------------------
[ /^ubuntu1804-arm64/, anyType, gte(21) ],
[ /^ubuntu1804-arm64/, anyType, gte(20) ], // 20.x: gcc8 builds stop
[ /^cross-compiler-ubuntu1604-armv[67]-gcc-4.9/, anyType, gte(18) ],
[ /^cross-compiler-ubuntu1604-armv[67]-gcc-6/, anyType, gte(18) ],
[ /^cross-compiler-ubuntu1804-armv7-gcc-6/, anyType, gte(18) ],
Expand Down

0 comments on commit 8f4f16f

Please sign in to comment.