From 4016b9fd0b93576f2f612c3f81db412c73d20a6f Mon Sep 17 00:00:00 2001 From: LizenzFass78851 <82592556+LizenzFass78851@users.noreply.github.com> Date: Fri, 6 Jun 2025 15:36:03 +0200 Subject: [PATCH] riscv64 build for FTL is available as a release Signed-off-by: LizenzFass78851 <82592556+LizenzFass78851@users.noreply.github.com> --- src/Dockerfile | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/Dockerfile b/src/Dockerfile index c372352..7b74060 100644 --- a/src/Dockerfile +++ b/src/Dockerfile @@ -110,8 +110,7 @@ RUN if [ "$TARGETPLATFORM" = "linux/amd64" ]; then FTLARCH=amd64; \ elif [ "$TARGETPLATFORM" = "linux/arm/v7" ]; then FTLARCH=armv7; \ # Note for the future, "linux/arm6/v8" is not a valid value for TARGETPLATFORM, despite the CI platform name being that. elif [ "$TARGETPLATFORM" = "linux/arm64" ]; then FTLARCH=arm64; \ - # RISCV is currently not working on GHA, and so FTL is unavailable for this platform. - #elif [ "$TARGETPLATFORM" = "linux/riscv64" ]; then FTLARCH=riscv64; \ + elif [ "$TARGETPLATFORM" = "linux/riscv64" ]; then FTLARCH=riscv64; \ else FTLARCH=amd64; fi \ && echo "Arch: ${TARGETPLATFORM}, FTLARCH: ${FTLARCH}" \ && 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 \