-
-
Notifications
You must be signed in to change notification settings - Fork 71
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
Enable Weekend "Weekly" builds to run "dev...." test list #728
Labels
Comments
This will change when we consider moving to all version being EA tag build triggered, at which point the EA beta builds will run all the test including "dev", and Release builds will run all except for "dev". |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Once PR https://github.com/adoptium/ci-jenkins-pipelines/pull/639/files is merged the weekend builds will run the "Weekly" test lists, which is currently “weeklyDefault” + “nightlyDefault”.
This issue will update "Weekly" to run: “weeklyDefault” + “nightlyDefault” + “devDefault”
Where "devDefault" is a new addition to the defaults.json testDetails lists:
ci-jenkins-pipelines/pipelines/defaults.json
Line 39 in 04dda51
And will contain:
"devDefault" : [
"dev.openjdk",
"dev.system"
]
Then the “test list” assignments for the various pipeline "ReleaseType" is:
ReleaseType==“Nightly” => “nightlyDefault”
ReleaseType==“Weekly” => “weeklyDefault” + “nightlyDefault” + “devDefault”
Releasetype==“Release” => “weeklyDefault” + “nightlyDefault”
Logic here:
ci-jenkins-pipelines/pipelines/build/common/build_base_file.groovy
Line 241 in 04dda51
The text was updated successfully, but these errors were encountered: