Skip to content

Commit

Permalink
Partially revert riscv64 support
Browse files Browse the repository at this point in the history
Since the alpine image we use does not have a riscv64 architecture, we
can't build riscv64 images.
  • Loading branch information
mrueg authored and aauren committed Aug 30, 2023
1 parent 9805c79 commit 0110d1d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 6 deletions.
3 changes: 0 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,6 @@ jobs:
linux/arm/v7
linux/s390x
linux/ppc64le
linux/riscv64
push: true
build-args: |
BUILDTIME_BASE=${{ env.BUILDTIME_BASE }}
Expand Down Expand Up @@ -151,7 +150,6 @@ jobs:
linux/arm/v7
linux/s390x
linux/ppc64le
linux/riscv64
push: true
build-args: |
BUILDTIME_BASE=${{ env.BUILDTIME_BASE }}
Expand All @@ -171,7 +169,6 @@ jobs:
linux/arm/v7
linux/s390x
linux/ppc64le
linux/riscv64
push: true
build-args: |
BUILDTIME_BASE=${{ env.BUILDTIME_BASE }}
Expand Down
6 changes: 3 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ push: container docker-login ## Pushes a Docker container image to a registry.
push-manifest:
@echo Starting kube-router manifest push.
./manifest-tool push from-args \
--platforms linux/amd64,linux/arm64,linux/arm,linux/s390x,linux/ppc64le,linux/riscv64 \
--platforms linux/amd64,linux/arm64,linux/arm,linux/s390x,linux/ppc64le \
--template "$(REGISTRY_DEV):ARCH-$(MANIFEST_TAG)" \
--target "$(REGISTRY_DEV):$(MANIFEST_TAG)"

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

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

Expand Down

0 comments on commit 0110d1d

Please sign in to comment.