fixes for generation script

This commit is contained in:
Neil Hanlon 2023-05-15 23:18:43 -04:00
parent ef2f938228
commit b67e667462
Signed by: neil
GPG Key ID: 705BC21EC3C70F34
1 changed files with 15 additions and 14 deletions

View File

@ -9,8 +9,8 @@ major=${1:0:1}
minor=${1:2:1}
usage() {
printf "%s: RELEASE TYPE [DATE]\n\n" $0
log "$1"
printf "%s: RELEASE TYPE [DATE]\n\n" $0
log "$1"
}
# shellcheck disable=SC2046,1091,1090
@ -21,27 +21,29 @@ name="Rocky-${version}.${date}-${type}"
arches=(x86_64 aarch64)
set -x
if [[ $major -ge 9 ]]; then
arches=(${arches[@]} s390x ppc64le)
arches=(${arches[@]} s390x ppc64le)
fi
case $type in
UBI|Minimal)
suffix="-${type,,}" ;;
*)
suffix='';;
case $type in
UBI | Minimal)
suffix="-${type,,}"
;;
*)
suffix=''
;;
esac
declare -A shasums
for a in "${arches[@]}"; do
pt="${name}-${a}"
if has-branch $pt; then
shasums[$a]="$(git rev-parse $pt)"
fi
pt="${name}-${a}"
if has-branch $pt; then
shasums[$a]="$(git rev-parse $pt)"
fi
done
cat <<EOF
Tags: ${version}.${date}${suffix}, ${major}${suffix}, ${version}${suffix}
Tags: ${version}.${date}${suffix}, ${version}${suffix}, ${major}${suffix}
GitFetch: refs/heads/${name}-x86_64
GitCommit: ${shasums[x86_64]}
arm64v8-GitFetch: refs/heads/${name}-aarch64
@ -52,4 +54,3 @@ ppc64le-GitFetch: refs/heads/${name}-ppc64le
ppc64le-GitCommit: ${shasums[ppc64le]}
Architectures: amd64, arm64v8, ppc64le, s390x
EOF