We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 483a3b3 + 95c72a7 commit 74350beCopy full SHA for 74350be
build/check_container.sh
@@ -28,7 +28,7 @@
28
target_image=$1
29
30
# Architectures officially supported by cadvisor
31
-arches=( "amd64" "arm" "arm64" "s390x" )
+arches=( "amd64" "arm" "arm64" )
32
33
# Docker doesn't handle images with different architectures but the same tag.
34
# Remove the container and the image use by it to avoid problems.
build/release.sh
@@ -55,7 +55,7 @@ docker buildx inspect cadvisor-builder > /dev/null \
55
# Build binaries
56
57
# A mapping of the docker arch name to the qemu arch name
58
-declare -A arches=( ["amd64"]="x86_64" ["arm"]="arm" ["arm64"]="aarch64" ["s390x"]="s390x")
+declare -A arches=( ["amd64"]="x86_64" ["arm"]="arm" ["arm64"]="aarch64" )
59
60
for arch in "${arches[@]}"; do
61
if ! hash "qemu-${arch}-static"; then
0 commit comments