From 21fa67771291279a1efe7081c7d300ce2bbc98cc Mon Sep 17 00:00:00 2001 From: Eric Engestrom Date: Fri, 4 Aug 2023 18:30:53 +0100 Subject: [PATCH] ci: document which image tags need to be bumped when updating {alpine,debian,fedora}/x86_64 Part-of: --- .gitlab-ci/container/alpine/x86_64_build.sh | 5 +++++ .gitlab-ci/container/debian/x86_64_build.sh | 4 ++++ .gitlab-ci/container/fedora/x86_64_build.sh | 5 +++++ 3 files changed, 14 insertions(+) diff --git a/.gitlab-ci/container/alpine/x86_64_build.sh b/.gitlab-ci/container/alpine/x86_64_build.sh index cd643eb..54b8f3a 100644 --- a/.gitlab-ci/container/alpine/x86_64_build.sh +++ b/.gitlab-ci/container/alpine/x86_64_build.sh @@ -1,5 +1,10 @@ #!/usr/bin/env bash # shellcheck disable=SC1091 + +# When changing this file, you need to bump the following +# .gitlab-ci/image-tags.yml tags: +# ALPINE_X86_64_BUILD_TAG + set -e set -o xtrace diff --git a/.gitlab-ci/container/debian/x86_64_build.sh b/.gitlab-ci/container/debian/x86_64_build.sh index 85d0303..13b85d7 100644 --- a/.gitlab-ci/container/debian/x86_64_build.sh +++ b/.gitlab-ci/container/debian/x86_64_build.sh @@ -1,6 +1,10 @@ #!/usr/bin/env bash # shellcheck disable=SC2086 # we want word splitting +# When changing this file, you need to bump the following +# .gitlab-ci/image-tags.yml tags: +# DEBIAN_BUILD_TAG + set -e set -o xtrace diff --git a/.gitlab-ci/container/fedora/x86_64_build.sh b/.gitlab-ci/container/fedora/x86_64_build.sh index 72114f4..d03a5ef 100644 --- a/.gitlab-ci/container/fedora/x86_64_build.sh +++ b/.gitlab-ci/container/fedora/x86_64_build.sh @@ -1,5 +1,10 @@ #!/usr/bin/env bash # shellcheck disable=SC1091 + +# When changing this file, you need to bump the following +# .gitlab-ci/image-tags.yml tags: +# FEDORA_X86_64_BUILD_TAG + set -e set -o xtrace -- 2.7.4