Skip to content

Commit ad1ed32

Browse files
authored
Merge pull request #169 from infosiftr/no-RVA23
Remove riscv64 from Ubuntu 25.10+ (RVA23)
2 parents b235331 + a1e0227 commit ad1ed32

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

generate-stackbrew-library.sh

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -94,6 +94,12 @@ for version; do
9494

9595
variantArches="$arches"
9696

97+
# https://github.com/docker-library/official-images/pull/19581#issuecomment-3161255023 - Ubuntu 25.10+ ("questing") has updated their riscv64 baseline to RVA23 which is unsupported by DOI (and ... the entire public hardware ecosystem ATM)
98+
case "$version" in
99+
ubuntu/jammy | ubuntu/noble | ubuntu/plucky) ;; # pre-25.10 releases which can keep riscv64 support
100+
ubuntu/*) variantArches="$(sed <<<" $variantArches " -e 's/ riscv64 / /g')" ;;
101+
esac
102+
97103
echo
98104
cat <<-EOE
99105
Tags: $(join ', ' "${variantAliases[@]}")

0 commit comments

Comments
 (0)