Skip to content

Commit 58af1a2

Browse files
committed
Remove support for riscv64 (builds too slowly, so builds never finish)
1 parent c9d547e commit 58af1a2

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

generate-stackbrew-library.sh

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,8 @@ for version; do
9595
parent="$(awk 'toupper($1) == "FROM" { print $2 }' "$version/Dockerfile")"
9696
# no i386 for now: https://github.com/docker-library/gcc/issues/38
9797
# no mips64le for now: https://github.com/docker-library/gcc/issues/67
98-
arches="$(echo " ${parentRepoToArches[$parent]} " | sed -r -e 's/ i386 / /g' -e 's/ mips64le / /g')"
98+
# no riscv64 because it takes (way) too long to build
99+
arches="$(sed <<<" ${parentRepoToArches[$parent]} " -r -e 's/ i386 / /g' -e 's/ mips64le / /g' -e 's/ riscv64 / /g')"
99100

100101
echo
101102
jq -r '"# Last Modified: " + .[env.version].lastModified' versions.json

0 commit comments

Comments
 (0)