[Infra] - Always push the release images in the post-merge job (#4426)

Signed-off-by: Yanchao Lu <yanchaol@nvidia.com>
This commit is contained in:
Yanchao Lu 2025-05-19 11:05:42 +08:00 committed by GitHub
parent c4a0d768b5
commit a28cf3240c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -228,7 +228,7 @@ pipeline {
}
steps
{
buildImage("trtllm", params.action, "skip", "", LLM_BRANCH_TAG)
buildImage("trtllm", env.JOB_NAME ==~ /.*PostMerge.*/ ? "push" : params.action, "skip", "", LLM_BRANCH_TAG)
}
}
stage("Build x86_64-skip") {
@ -246,7 +246,7 @@ pipeline {
}
steps
{
buildImage("trtllm", params.action, "skip", "", LLM_BRANCH_TAG + "-sbsa", "", true)
buildImage("trtllm", env.JOB_NAME ==~ /.*PostMerge.*/ ? "push" : params.action, "skip", "", LLM_BRANCH_TAG + "-sbsa", "", true)
}
}
stage("Build rockylinux8 x86_64-skip-py3.10") {