-
-
Notifications
You must be signed in to change notification settings - Fork 284
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
Stop testing Java 11 #622
Stop testing Java 11 #622
Conversation
forkCount: '1C', // run this number of tests in parallel for faster feedback. If the number terminates with a 'C', the value will be multiplied by the number of available CPU cores | ||
useContainerAgent: true, // Set to `false` if you need to use Docker for containerized tests | ||
configurations: [ | ||
[platform: 'linux', jdk: 21], |
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.
Should we align with https://github.com/jenkinsci/jenkins/blob/master/Jenkinsfile#L16 ?
I see that Jenkins build is running for |
There seems to be some temporary outage for the windows agents -> jenkins-infra/helpdesk#4490 |
Do you mind updating pom.xml as well accordingly to reference the proper LTS that goes with this change? |
Upgrading towards the latest 2.479.x LTS line will require additional effort that is far beyond the scope of this PR. I will however look into it in a seperate PR. |
56b0178
to
ec428af
Compare
ec428af
to
7d56188
Compare
Stop testing Java 11
Jenkins stopped supporting Java 11 with the release of Jenkins 2.463 (weekly) and Jenkins 2.479.1 (LTS). Most plugins stopped spending
ci.jenkins.io
time to run tests that are specific to Java 11.Let's save money and time by removing the Java 11 test configuration. It has not found any issues that are not also found with Java 17 and Java 21.
Jenkins plugin BOM still tests with Java 11 on older lines (currently 2.452.x and 2.462.x) and the plugin build will continue to generate Java 11 byte code until the parent pom is upgraded to 5.x and the minimum Jenkins version is upgraded to 2.479.1.
Switches to test Java 17 / Java 21 since to match the test configuration used in the plugin archetype.
Testing done
None. Rely on
ci.jenkins.io
to test it.Submitter checklist