[CI] Changing windows artifacts name | pushing signed files to share#4397
Open
przepeck wants to merge 9 commits into
Open
[CI] Changing windows artifacts name | pushing signed files to share#4397przepeck wants to merge 9 commits into
przepeck wants to merge 9 commits into
Conversation
Contributor
There was a problem hiding this comment.
Pull request overview
This PR updates the Windows Jenkins pipeline to make promoted artifact naming consistent (removing the commit SHA from the ZIP name) and to improve the promotion flow for signed outputs copied to the network share.
Changes:
- Persist the build timestamp as
env.BUILDSTAMPand use it when promoting artifacts. - Wrap BDBA and signing stages in
catchErrorso failures don’t hard-fail the whole build (build becomesUNSTABLEwhile the stage isFAILURE). - Add a dedicated “Promote package” stage that copies either the signed ZIP (if present) or falls back to the unsigned ZIP, and publishes it to the share under both a timestamped folder and
latest.
Comments suppressed due to low confidence (1)
ci/build_test_release.groovy:168
- The signed package’s
.sha256file is only copied into thelatestfolder, but not into the timestamped${destPath}\\${env.BUILDSTAMP}folder (even though the package itself is copied to both). This makes the archived buildstamp directory incomplete and breaks integrity verification for non-latestbuilds.
if (shaFile != "" && fileExists("${env.WORKSPACE}\\dist\\windows\\${shaFile}")) {
status = bat(returnStatus:true, script: "copy /Y \"${env.WORKSPACE}\\dist\\windows\\${shaFile}\" \"${latestPath}\\${packageName}.sha256\"")
if (status != 0) {
pgladkows
approved these changes
Jul 23, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
🛠 Summary
CVS-187402
Removing commit sha from package name to be consistent for automate.
Fixed pushing signed files to the share.
🧪 Checklist
``