Skip to content

Commit 702b4b3

Browse files
authored
Drop PowerPC 64 support (ppc64le) (jenkinsci#293)
IBM no longer provides the PowerPC agents that we use to test and verify PowerPC support. Can't support an architecture that we can't test.
1 parent 811bbe8 commit 702b4b3

File tree

2 files changed

+1
-5
lines changed

2 files changed

+1
-5
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ export DOCKER_CLI_EXPERIMENTAL=enabled
88
export BUILDKIT_PROGRESS=plain
99

1010
current_arch := $(shell uname -m)
11-
export ARCH ?= $(shell case $(current_arch) in (x86_64) echo "amd64" ;; (i386) echo "386";; (aarch64|arm64) echo "arm64" ;; (armv6*) echo "arm/v6";; (armv7*) echo "arm/v7";; (ppc64*|s390*|riscv*) echo $(current_arch);; (*) echo "UNKNOWN-CPU";; esac)
11+
export ARCH ?= $(shell case $(current_arch) in (x86_64) echo "amd64" ;; (i386) echo "386";; (aarch64|arm64) echo "arm64" ;; (armv6*) echo "arm/v6";; (armv7*) echo "arm/v7";; (s390*|riscv*) echo $(current_arch);; (*) echo "UNKNOWN-CPU";; esac)
1212

1313
IMAGE_NAME:=jenkins4eval/agent
1414
IMAGE_NAME_AGENT:=jenkins4eval/slave

docker-bake.hcl

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -28,10 +28,6 @@ group "linux-s390x" {
2828
]
2929
}
3030

31-
group "linux-ppc64le" {
32-
targets = []
33-
}
34-
3531
group "windows" {
3632
targets = [
3733
"windows_2019_jdk11",

0 commit comments

Comments
 (0)