3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-09-03 08:38:06 +00:00

Add SHA256 hash generation for ZIP archives in nightly and release builds

Co-authored-by: NikolajBjorner <3085284+NikolajBjorner@users.noreply.github.com>
This commit is contained in:
copilot-swe-agent[bot] 2025-07-11 14:15:15 +00:00
parent e2eaf4ac24
commit 62fa8cc12f
2 changed files with 22 additions and 3 deletions

View file

@ -358,7 +358,7 @@ stages:
displayName: 'Download Win32 Build'
inputs:
artifactName: 'WindowsBuild-x86'
targetPath: $(Agent.TempDirectory)
targetPath: $(Agent.TempDirectory)
- task: DownloadPipelineArtifact@2
displayName: 'Download ManyLinux Build'
inputs:
@ -452,6 +452,15 @@ stages:
inputs:
artifactName: 'NuGet32'
targetPath: tmp
- script: |
cd tmp
for file in *.zip; do
if [ -f "$file" ]; then
sha256sum "$file" > "$file.sha256"
echo "Generated SHA256 for $file"
fi
done
displayName: 'Generate SHA256 hashes for ZIP files'
- task: GitHubRelease@1
continueOnError: true
inputs: