Skip to content

Commit 0f58605

Browse files
committed
Remove RISCV builds for the time being
Signed-off-by: Adam Warner <me@adamwarner.co.uk>
1 parent 2a656e6 commit 0f58605

File tree

2 files changed

+6
-4
lines changed

2 files changed

+6
-4
lines changed

.github/workflows/build-and-publish.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,10 @@ jobs:
2222
matrix:
2323
platform: [linux/amd64, linux/386, linux/arm/v6, linux/arm/v7, linux/arm64]
2424
alpine_version: [3.19]
25-
include:
26-
- platform: linux/riscv64
27-
alpine_version: edge
25+
# RISCV is currently not working on GHA, and so FTL is unavailable for this platform.
26+
# include:
27+
# - platform: linux/riscv64
28+
# alpine_version: edge
2829

2930
steps:
3031
- name: Prepare name for digest up/download

src/Dockerfile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,8 @@ RUN if [ "$TARGETPLATFORM" = "linux/amd64" ]; then FTLARCH=amd64; \
101101
elif [ "$TARGETPLATFORM" = "linux/arm/v7" ]; then FTLARCH=armv7; \
102102
# Note for the future, "linux/arm6/v8" is not a valid value for TARGETPLATFORM, despite the CI platform name being that.
103103
elif [ "$TARGETPLATFORM" = "linux/arm64" ]; then FTLARCH=arm64; \
104-
elif [ "$TARGETPLATFORM" = "linux/riscv64" ]; then FTLARCH=riscv64; \
104+
# RISCV is currently not working on GHA, and so FTL is unavailable for this platform.
105+
#elif [ "$TARGETPLATFORM" = "linux/riscv64" ]; then FTLARCH=riscv64; \
105106
else FTLARCH=amd64; fi \
106107
&& echo "Arch: ${TARGETPLATFORM}, FTLARCH: ${FTLARCH}" \
107108
&& if [ "${FTL_BRANCH}" = "master" ]; then URL="https://github.com/pi-hole/ftl/releases/latest/download"; else URL="https://ftl.pi-hole.net/${FTL_BRANCH}"; fi \

0 commit comments

Comments
 (0)