Skip to content

Commit 0110d1d

Browse files
mruegaauren
authored andcommitted
Partially revert riscv64 support
Since the alpine image we use does not have a riscv64 architecture, we can't build riscv64 images.
1 parent 9805c79 commit 0110d1d

File tree

2 files changed

+3
-6
lines changed

2 files changed

+3
-6
lines changed

.github/workflows/ci.yml

-3
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,6 @@ jobs:
119119
linux/arm/v7
120120
linux/s390x
121121
linux/ppc64le
122-
linux/riscv64
123122
push: true
124123
build-args: |
125124
BUILDTIME_BASE=${{ env.BUILDTIME_BASE }}
@@ -151,7 +150,6 @@ jobs:
151150
linux/arm/v7
152151
linux/s390x
153152
linux/ppc64le
154-
linux/riscv64
155153
push: true
156154
build-args: |
157155
BUILDTIME_BASE=${{ env.BUILDTIME_BASE }}
@@ -171,7 +169,6 @@ jobs:
171169
linux/arm/v7
172170
linux/s390x
173171
linux/ppc64le
174-
linux/riscv64
175172
push: true
176173
build-args: |
177174
BUILDTIME_BASE=${{ env.BUILDTIME_BASE }}

Makefile

+3-3
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,7 @@ push: container docker-login ## Pushes a Docker container image to a registry.
139139
push-manifest:
140140
@echo Starting kube-router manifest push.
141141
./manifest-tool push from-args \
142-
--platforms linux/amd64,linux/arm64,linux/arm,linux/s390x,linux/ppc64le,linux/riscv64 \
142+
--platforms linux/amd64,linux/arm64,linux/arm,linux/s390x,linux/ppc64le \
143143
--template "$(REGISTRY_DEV):ARCH-$(MANIFEST_TAG)" \
144144
--target "$(REGISTRY_DEV):$(MANIFEST_TAG)"
145145

@@ -153,12 +153,12 @@ push-release: push
153153
push-manifest-release:
154154
@echo Starting kube-router manifest push.
155155
./manifest-tool push from-args \
156-
--platforms linux/amd64,linux/arm64,linux/arm,linux/s390x,linux/ppc64le,linux/riscv64 \
156+
--platforms linux/amd64,linux/arm64,linux/arm,linux/s390x,linux/ppc64le \
157157
--template "$(REGISTRY):ARCH-${RELEASE_TAG}" \
158158
--target "$(REGISTRY):$(RELEASE_TAG)"
159159

160160
./manifest-tool push from-args \
161-
--platforms linux/amd64,linux/arm64,linux/arm,linux/s390x,linux/ppc64le,linux/riscv64 \
161+
--platforms linux/amd64,linux/arm64,linux/arm,linux/s390x,linux/ppc64le \
162162
--template "$(REGISTRY):ARCH-${RELEASE_TAG}" \
163163
--target "$(REGISTRY):latest"
164164

0 commit comments

Comments
 (0)