diff options
author | 2024-11-28 16:35:57 +0100 | |
---|---|---|
committer | 2024-11-29 04:53:34 +0100 | |
commit | 92ec73787f74645a3616ce84e9be84033e55b361 (patch) | |
tree | 18352f8270185b736e4d476e02ae98565fb3ad03 /deploy-manifests.sh | |
parent | Add other architectures to "nomultilib" images (diff) | |
download | docker-images-master.tar.gz docker-images-master.tar.bz2 docker-images-master.zip |
Add generic "t64" and "t64-systemd" aliases that cover all images with
64-bit time_t: both t64 images for 32-bit architectures and the regular
images for 64-bit architectures. This makes it possible to use:
FROM gentoo/stage3:t64
to get a system with 64-bit time_t without having to separately cover
individual architectures.
Closes: https://github.com/gentoo/gentoo-docker-images/pull/150
Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'deploy-manifests.sh')
-rwxr-xr-x | deploy-manifests.sh | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/deploy-manifests.sh b/deploy-manifests.sh index 9468ddd..ffe498e 100755 --- a/deploy-manifests.sh +++ b/deploy-manifests.sh @@ -54,6 +54,12 @@ case "${TARGET}" in "stage3:systemd") TAGS=("amd64-systemd" "armv5tel-systemd" "armv6j_hardfp-systemd" "armv7a_hardfp-systemd" "arm64-systemd" "i686-systemd" "ppc64le-systemd" "rv64_lp64d-systemd") ;; + "stage3:t64") + TAGS=("amd64-openrc" "arm64-openrc" "i686-ssemath-t64-openrc" "ppc64le-openrc" "rv64_lp64d-openrc" "s390x") + ;; + "stage3:t64-systemd") + TAGS=("amd64-systemd" "arm64-systemd" "i686-ssemath-t64-systemd" "ppc64le-systemd" "rv64_lp64d-systemd") + ;; *) echo "Done! No manifests to push for TARGET=${TARGET}." exit 0 |