Skip to content

Commit bf795af

Browse files
committed
release: Run garbage collection from release job
Trigger the GC job during the release job for the respective stream.
1 parent 6a2ca50 commit bf795af

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

jobs/release.Jenkinsfile

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -333,6 +333,12 @@ lock(resource: "release-${params.STREAM}", extra: locks) {
333333
}
334334
}
335335
}
336+
stage('Fork Garbage Collection') {
337+
build job: 'garbage-collection', wait: false, parameters: [
338+
string(name: 'STREAM', value: params.STREAM),
339+
booleanParam(name: 'DRY_RUN', value: false)
340+
]
341+
}
336342
stage('Publish') {
337343
pipeutils.withAWSBuildUploadCredentials() {
338344
// Since some of the earlier operations (like AWS replication) only modify

0 commit comments

Comments
 (0)