Generate hashes for all the architectures in the Release files.
continuous-integration/drone/push Build is passing Details

This commit is contained in:
Fabio Manganiello 2023-09-19 14:29:34 +02:00
parent eb398f24d7
commit f6517059f6
Signed by: blacklight
GPG Key ID: D90FBA7F76362774
1 changed files with 5 additions and 0 deletions

View File

@ -486,6 +486,11 @@ steps:
hash="$($hash_cmd "$file" | cut -d" " -f1)"
size="$(wc -c < $file)"
echo " $hash $size $basename"
echo " $hash $size $(echo basename | sed -re 's|/all/|/binary-i386/|')"
echo " $hash $size $(echo basename | sed -re 's|/all/|/binary-amd64/|')"
echo " $hash $size $(echo basename | sed -re 's|/all/|/binary-armel/|')"
echo " $hash $size $(echo basename | sed -re 's|/all/|/binary-armhf/|')"
echo " $hash $size $(echo basename | sed -re 's|/all/|/binary-arm64/|')"
done
}