Skip to content

Commit 13e945e

Browse files
committed
[Build] Fix and unify invocations of 'update-download-index' job
Update or fix all invocations of a 'update-download-index' job to invoke only 'Releng/updateIndex', because its definition is under version-control. The other previously referenced jobs are either manually defined/maintained (with equal definition) or don't exist. This fixes the index-update for the mark-(un)stable and makeVisbile jobs and allows to delete the manually defined 'eclipse.releng.updateIndex' job.
1 parent ce4874c commit 13e945e

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

JenkinsJobs/Builds/build.jenkinsfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -298,7 +298,7 @@ spec:
298298
./mb600_promoteEclipse.sh $CJE_ROOT/buildproperties.shsource
299299
'''
300300
}
301-
build job: 'eclipse.releng.updateIndex', wait: false
301+
build job: 'Releng/updateIndex', wait: false
302302
}
303303
}
304304
}

JenkinsJobs/Builds/markStable.groovy

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ job('Builds/markStable'){
8686

8787
publishers {
8888
downstreamParameterized {
89-
trigger('updateIndex') {
89+
trigger('Releng/updateIndex') {
9090
condition('SUCCESS')
9191
triggerWithNoParameters(true)
9292
}

JenkinsJobs/Builds/markUnstable.groovy

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ job('Builds/markUnstable'){
9393

9494
publishers {
9595
downstreamParameterized {
96-
trigger('updateIndex') {
96+
trigger('Releng/updateIndex') {
9797
condition('SUCCESS')
9898
triggerWithNoParameters(true)
9999
}

JenkinsJobs/Releng/makeVisible.groovy

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ ${WORKSPACE}/makeVisible.sh
5252

5353
publishers {
5454
downstreamParameterized {
55-
trigger('updateIndex') {
55+
trigger('Releng/updateIndex') {
5656
triggerWithNoParameters(true)
5757
}
5858
}

0 commit comments

Comments
 (0)