mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-04-23 06:32:10 +02:00

This is the state of the files as of cdt-infra commit 497e7b2a643ff6ea12a56a21c17dd2d170e918c8 with the Readme updated for the new locations
38 lines
1.3 KiB
Bash
Executable file
38 lines
1.3 KiB
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
set -eux
|
|
|
|
if ! git diff-index HEAD --quiet; then
|
|
echo "git tree is dirty, please commit changes before deploying images"
|
|
exit 1
|
|
fi
|
|
|
|
namespace=${1:-quay.io/eclipse-cdt}
|
|
shorthash=$(git rev-parse --short HEAD)
|
|
toplevel=$(git rev-parse --show-toplevel)
|
|
|
|
images="cdt-infra-eclipse-full:ubuntu-18.04 cdt-infra-plus-eclipse-install:ubuntu-18.04"
|
|
|
|
$toplevel/docker/build-images.sh
|
|
|
|
for image in $images; do
|
|
docker tag $image ${namespace}/${image}-${shorthash}
|
|
docker push ${namespace}/${image}-${shorthash}
|
|
nameonly=$(echo $image | sed -es,:.*,,)
|
|
docker tag $image ${namespace}/${nameonly}:latest
|
|
docker push ${namespace}/${nameonly}:latest
|
|
done
|
|
|
|
echo "The following images have been pushed."
|
|
for image in $images; do
|
|
hashname=$(docker inspect --format='{{index .RepoDigests 0}}' $image)
|
|
echo $image "-->" $hashname
|
|
nameonly=$(echo $image | sed -es,:.*,,)
|
|
find $toplevel -name \*\.Jenkinsfile -or -name \*\.yaml | while read file; do
|
|
sed -i "s#image: $namespace/$nameonly[:@].*#image: $hashname#" $file
|
|
git add $file
|
|
done
|
|
done
|
|
echo "Finished pushing to $namespace with tag hash $shorthash"
|
|
git commit -m"Update images to Dockerfiles from commit $shorthash"
|
|
echo "The .yaml and .Jenkinsfiles have been updated to new image and committed, now Push!"
|