Skip to content

Commit 8c5be80

Browse files
committed
garbage-collection: keep container_env as empty map
Update container_env as empty map to make sure we can run the garbage-collection on streams that we are disabled at the moment like branched and bodhi-updates
1 parent 8b4e0de commit 8c5be80

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

jobs/garbage-collection.Jenkinsfile

+3-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,9 @@ properties([
2424

2525
def build_description = "[${params.STREAM}]"
2626
def cosa_img = 'quay.io/coreos-assembler/coreos-assembler:main'
27-
def container_env = pipeutils.get_env_vars_for_stream(pipecfg, params.STREAM)
27+
// def container_env = pipeutils.get_env_vars_for_stream(pipecfg, params.STREAM)
28+
// Let's keep container_env as empty map temporarily to prune on disabled streams
29+
def container_env = [:]
2830
def s3_stream_dir = pipeutils.get_s3_streams_dir(pipecfg, params.STREAM)
2931
def dry_run = params.DRY_RUN ? "--dry-run" : ""
3032

0 commit comments

Comments
 (0)