-
Notifications
You must be signed in to change notification settings - Fork 51
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
switch Jenkins to use Java 17 #2195
Conversation
c9c2ab2
to
d06eb5a
Compare
Jenkins upstream would support Java 21, but there is no 21 in Debian (old)stable. |
$java_package = 'java-11-openjdk-headless' | ||
$java_package = 'java-17-openjdk-headless' | ||
|
||
package { ['java-1.8.0-openjdk', 'java-1.8.0-openjdk-headless', 'java-1.8.0-openjdk-devel']: | ||
package { ['java-11-openjdk', 'java-11-openjdk-headless', 'java-11-openjdk-devel']: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I was wondering if we should have jenkins_java_version = 17
and jenkins_java_cleanup = 11
somewhere, and just reuse that through the manifests.
d06eb5a
to
0c7333e
Compare
@@ -4,14 +4,10 @@ | |||
auto => { 'reboot' => false }, | |||
blacklist => [ | |||
'docker-ce', |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Unrelated, but we can get rid of this by now. We never really adopted Docker on our CI.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Especially, we do not have Debian-based (general purpose) CI nodes ;)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
No description provided.