Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

jenkins: skip debian10 for Node.js >=21 #3586

Merged
merged 1 commit into from
Dec 8, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
jenkins: skip debian10 for Node.js >=21
Remove debian8 as all machines were replaced.

Refs: #3499
  • Loading branch information
targos committed Dec 8, 2023
commit 2d054a7a2f5c05680e3ae33f4f2e7b89b2d1dc7e
2 changes: 1 addition & 1 deletion jenkins/scripts/VersionSelectorScript.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@ def buildExclusions = [
[ /^centos7-(arm)?64-gcc6/, anyType, gte(16) ], // 14.x: gcc6 builds stop
[ /^centos7-(arm)?64-gcc8/, anyType, gte(18) ], // 18.x: centos7 builds stop
[ /^centos7-64/, anyType, gte(18) ],
[ /debian8/, anyType, gte(16) ],
[ /debian9/, anyType, gte(16) ],
[ /debian10/, anyType, gte(21) ],
[ /rhel7/, anyType, gte(18) ],
[ /rhel8/, releaseType, lt(18) ],
[ /^ubuntu1604-32/, anyType, gte(16) ], // 32-bit linux for <10 only
Expand Down