Skip to content

Commit

Permalink
Trigger EPP build when SimRel content is updated (#165)
Browse files Browse the repository at this point in the history
Fixes #122
  • Loading branch information
jonahgraham authored May 23, 2024
1 parent d62134f commit e849b0d
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 1 deletion.
11 changes: 10 additions & 1 deletion Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,16 @@ pipeline {
disableConcurrentBuilds()
}
triggers {
cron('H 21 * * *') // run every day at ~9pm
// run every day at ~9pm
cron('H 21 * * *')

// check every 5 minutes for changes to the staging repo's content.jar
URLTrigger(cronTabSpec: 'H/5 * * * *', entries: [URLTriggerEntry(
url: 'https://download.eclipse.org/staging/2024-06/content.jar',
contentTypes: [
MD5Sum()
]
)])
}
tools {
maven 'apache-maven-latest'
Expand Down
1 change: 1 addition & 0 deletions RELEASING.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ This checklist is only used once per release cycle. Scroll down for the per-mile
- [ ] epp.product
- [ ] p2.inf
- [ ] epp.p2.inf
- [ ] Jenkinsfile (SimRel triggering URL)
- [ ] `2020-12` -> `2021->03` part
- [ ] `4.14` -> `4.15` part
- [ ] Archive old releases (two R releases should stay on download.eclipse.org) to archive.eclipse.org and remove non-R downloads.
Expand Down

0 comments on commit e849b0d

Please sign in to comment.