Skip to content

Commit f896582

Browse files
committed
Remove s390x support
We can't build with s390x now due to missing package (thin-provisioning-tools) ``` fetch https://dl-cdn.alpinelinux.org/alpine/v3.18/community/s390x/APKINDEX.tar.gz ERROR: unable to select packages: thin-provisioning-tools (no such package): required by: world[thin-provisioning-tools] ``` Signed-off-by: David Porter <[email protected]>
1 parent 483a3b3 commit f896582

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

build/check_container.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
target_image=$1
2929

3030
# Architectures officially supported by cadvisor
31-
arches=( "amd64" "arm" "arm64" "s390x" )
31+
arches=( "amd64" "arm" "arm64" )
3232

3333
# Docker doesn't handle images with different architectures but the same tag.
3434
# Remove the container and the image use by it to avoid problems.

build/release.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ docker buildx inspect cadvisor-builder > /dev/null \
5555
# Build binaries
5656

5757
# 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")
58+
declare -A arches=( ["amd64"]="x86_64" ["arm"]="arm" ["arm64"]="aarch64" )
5959

6060
for arch in "${arches[@]}"; do
6161
if ! hash "qemu-${arch}-static"; then

0 commit comments

Comments
 (0)