2022-07-20 20:27:42 +00:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
|
|
|
|
version=${1}
|
|
|
|
type=${2}
|
|
|
|
arch=${3}
|
|
|
|
date=${4:-$(date +%Y%m%d)}
|
|
|
|
revision=${5:-0}
|
|
|
|
|
|
|
|
major=${1:0:1}
|
|
|
|
minor=${1:2:1}
|
|
|
|
TEMPLATE="library-template"
|
|
|
|
|
|
|
|
usage() {
|
|
|
|
printf "%s: RELEASE TYPE ARCH [DATE]\n\n" $0
|
|
|
|
log "$1"
|
|
|
|
}
|
|
|
|
|
2022-11-20 00:38:24 +00:00
|
|
|
# shellcheck disable=SC2046,1091,1090
|
|
|
|
source "$(dirname "${BASH_SOURCE[0]}")/common.sh"
|
2022-07-20 20:27:42 +00:00
|
|
|
|
2022-11-20 00:38:24 +00:00
|
|
|
build-container-manifests() {
|
2022-07-20 20:27:42 +00:00
|
|
|
|
2022-11-20 00:38:24 +00:00
|
|
|
case "$arch" in
|
|
|
|
x86_64)
|
|
|
|
build_args="--os linux --arch amd64 " ;;
|
|
|
|
aarch64)
|
|
|
|
build_args="--os linux --arch arm64 --variant v8" ;;
|
2022-11-29 04:05:03 +00:00
|
|
|
s390x)
|
|
|
|
build_args="--os linux --arch s390x" ;;
|
|
|
|
ppc64le)
|
|
|
|
build_args="--os linux --arch ppc64le" ;;
|
2022-11-20 00:38:24 +00:00
|
|
|
*) echo "invalid arch"; exit;;
|
|
|
|
esac
|
|
|
|
|
|
|
|
# don't bother tagging the intermediary container as we will just capture its shasum
|
|
|
|
container_shasum=$(podman build -q $build_args .)
|
|
|
|
pRes=$?
|
|
|
|
if [[ $pRes -gt 0 ]]; then
|
|
|
|
echo "failed to build container. exiting"
|
|
|
|
exit $pRes
|
2022-07-20 20:27:42 +00:00
|
|
|
fi
|
|
|
|
|
2022-11-20 00:38:24 +00:00
|
|
|
# Manifest tags need one per type (base/minimal/etc), and contain two architectures (for 8, 9 will ultimately have 4+)
|
|
|
|
if ! podman manifest exists "$manifest_tag"; then
|
|
|
|
podman manifest create "$manifest_tag"
|
|
|
|
pRes=$?
|
|
|
|
if [[ $pRes -gt 0 ]]; then
|
|
|
|
echo "Failed to create manifest"
|
|
|
|
exit $pRes
|
|
|
|
fi
|
|
|
|
else
|
|
|
|
echo "manifest exists. adding will overwrite existing platform tuple in manifest, if exists."
|
2022-07-20 20:27:42 +00:00
|
|
|
fi
|
|
|
|
|
2022-11-20 00:38:24 +00:00
|
|
|
podman manifest add $manifest_tag containers-storage:$container_shasum $build_args
|
|
|
|
pRes=$?
|
|
|
|
if [[ $pRes -gt 0 ]]; then
|
|
|
|
echo "Failed to add container image to manifest"
|
|
|
|
exit $pRes
|
2022-07-20 20:27:42 +00:00
|
|
|
fi
|
|
|
|
|
2022-11-20 00:38:24 +00:00
|
|
|
echo
|
|
|
|
echo "when all images have been added to the manifest, the manifests must be pushed to their locations."
|
|
|
|
echo "***Only push the bar MAJOR version tag (8,9) when the OS has been fully released.***"
|
|
|
|
echo
|
2022-07-20 20:27:42 +00:00
|
|
|
|
|
|
|
}
|
|
|
|
|
2022-11-20 00:38:24 +00:00
|
|
|
manifest-push-commands (){
|
2022-11-13 18:27:07 +00:00
|
|
|
local destinations=("docker.io/rockylinux/rockylinux" "quay.io/rockylinux/rockylinux")
|
|
|
|
local tags=("$version" "${version}.${date}")
|
2022-11-20 00:38:24 +00:00
|
|
|
local final_tags=()
|
2022-11-13 18:27:07 +00:00
|
|
|
for d in "${destinations[@]}"; do
|
|
|
|
for t in "${tags[@]}"; do
|
2022-11-20 00:38:24 +00:00
|
|
|
final_tags=(${final_tags[@]} "$d:$t")
|
2022-11-13 18:27:07 +00:00
|
|
|
done
|
|
|
|
done
|
2022-11-20 00:38:24 +00:00
|
|
|
|
|
|
|
for t in "${final_tags[@]}"; do
|
|
|
|
printf "podman manifest push %s %s\n" $manifest_tag $t
|
|
|
|
done
|
2022-11-13 18:27:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2022-11-20 00:38:24 +00:00
|
|
|
check-and-download (){
|
|
|
|
if has-branch $pattern; then
|
|
|
|
usage "Branch ${pattern} already exists. Exiting."
|
|
|
|
exit 1
|
|
|
|
fi
|
2022-07-20 20:27:42 +00:00
|
|
|
|
2022-11-20 00:38:24 +00:00
|
|
|
log "Creating branch ${pattern}"
|
2022-07-20 20:27:42 +00:00
|
|
|
|
2022-11-20 00:38:24 +00:00
|
|
|
log-cmd git checkout -b "${pattern}" $TEMPLATE
|
2022-07-20 20:27:42 +00:00
|
|
|
|
2022-11-20 00:38:24 +00:00
|
|
|
branch=$(current-branch)
|
|
|
|
if [[ "${branch}" != "${pattern}" ]]; then
|
|
|
|
log "Not on the proper branch after creation. Exiting for safety."
|
|
|
|
exit 127
|
|
|
|
fi
|
2022-07-20 20:27:42 +00:00
|
|
|
|
2022-11-20 00:38:24 +00:00
|
|
|
# Clear the history of the branch (Required for Docker Hub Official Images to only have one commit on the branch)
|
|
|
|
log-cmd git update-ref -d HEAD
|
2022-07-20 20:27:42 +00:00
|
|
|
|
2022-11-20 00:38:24 +00:00
|
|
|
builddir=$(latest-build)
|
|
|
|
if [[ -z "$builddir" ]]; then
|
|
|
|
log "Builddir not found. Exiting"
|
|
|
|
exit 3
|
|
|
|
fi
|
2022-07-20 20:27:42 +00:00
|
|
|
|
2022-11-20 00:38:24 +00:00
|
|
|
log-cmd aws --region us-east-2 --profile resf-peridot-prod s3 sync "s3://resf-empanadas/$builddir" $PWD
|
2022-07-20 20:27:42 +00:00
|
|
|
|
2022-11-20 00:38:24 +00:00
|
|
|
generate-packagelist
|
|
|
|
generate-filelist
|
|
|
|
}
|
2022-11-13 18:27:07 +00:00
|
|
|
|
2022-11-20 00:38:24 +00:00
|
|
|
check-and-download
|
2022-11-13 18:27:07 +00:00
|
|
|
build-container-manifests
|
2022-11-20 00:38:24 +00:00
|
|
|
|
|
|
|
git add .
|
|
|
|
git commit -S -m "Rocky Linux Container Image - $branch"
|
|
|
|
|
|
|
|
manifest-push-commands
|