You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
As context: the buildfarm expects to run the nightly generation at 10:00am Spain time and the DSL regenerate for libraries run at 10:39am. Should be fine to disable the job until the migration is done to have the morning clean.
def jenkins =Jenkins.instance
jenkins.items.each { job->// Check if the job name ends with -cwin or -clowin, does not include -pr-, and has no builds yetif ((job.name.endsWith("-clwin") || job.name.endsWith("-clowin")) &&!job.name.contains("-pr-") &&
job.builds.isEmpty()) {
println"Triggering job: ${job.name}"
job.scheduleBuild(0)
}
}
Post migration
Prepare the local builder for the Conda Windows jobs
Related to #373
As context: the buildfarm expects to run the nightly generation at 10:00am Spain time and the DSL regenerate for libraries run at 10:39am. Should be fine to disable the job until the migration is done to have the morning clean.
Migration plan
-ci-clwin
from FortressFull testing
Launching all the new jobs:
Post migration
jrivero/support_conda
Revert to current state
If things do not work well, the migration can be reverted. What would happen following the next steps:
-ci-*-win
jobs will be enabled again.-ci-*-clwin
or-ci-*-clowin
jobs will be disabled.-ci-pr-win
jobs will changed again to use-pr-*-clwin
or-pr-*-clowin
jobs will be disabled.Executing the rescue
The text was updated successfully, but these errors were encountered: