commit: 894b77f3fb89b04c898a85be865adb6e8fa8559c
Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Thu Nov 28 15:32:09 2024 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Fri Nov 29 03:53:34 2024 +0000
URL: https://gitweb.gentoo.org/proj/docker-images.git/commit/?id=894b77f3
Add other architectures to "nomultilib" images
Add architectures other than amd64 to "nomultilib" images, given that
they are "nomultilib" by design. This makes it possible to use:
FROM gentoo/stage3:nomultilib
without having to separately covered other architectures that don't
feature multilib at all.
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
deploy-manifests.sh | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/deploy-manifests.sh b/deploy-manifests.sh
index a2cde0e..9468ddd 100755
--- a/deploy-manifests.sh
+++ b/deploy-manifests.sh
@@ -40,10 +40,10 @@ case "${TARGET}" in
TAGS=("amd64-musl-llvm" "arm64-musl-llvm")
;;
"stage3:nomultilib")
- TAGS=("amd64-nomultilib-openrc")
+ TAGS=("amd64-nomultilib-openrc" "armv5tel-openrc"
"armv6j_hardfp-openrc" "armv7a_hardfp-openrc" "arm64-openrc" "i686-openrc"
"ppc64le-openrc" "rv64_lp64d-openrc" "s390x")
;;
"stage3:nomultilib-systemd")
- TAGS=("amd64-nomultilib-systemd")
+ TAGS=("amd64-nomultilib-systemd" "armv5tel-systemd"
"armv6j_hardfp-systemd" "armv7a_hardfp-systemd" "arm64-systemd" "i686-systemd"
"ppc64le-systemd" "rv64_lp64d-systemd")
;;
"stage3:ssemath-t64")
TAGS=("i686-ssemath-t64-openrc")