10000 Add "stretch" variants · lazy-alice/golang@312517a · GitHub
[go: up one dir, main page]

Skip to content

Commit 312517a

Browse files
committed
Add "stretch" variants
Given the glibc ABI break between buster and stretch, it is thus inordinately difficult to build binaries that work on older distributions (binaries build on buster won't run on stretch, for example).
1 parent a9533c8 commit 312517a

File tree

4 files changed

+250
-2
lines changed

4 files changed

+250
-2
lines changed

1.15/stretch/Dockerfile

Lines changed: 123 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

1.16/stretch/Dockerfile

Lines changed: 123 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

generate-stackbrew-library.sh

Lines changed: 2 additions & 2 deletions
8000
Original file line numberDiff line numberDiff line change
@@ -128,9 +128,9 @@ for version; do
128128
variantArches="${parentRepoToArches[$variantParent]}"
129129

130130
if [ "$variant" = 'stretch' ]; then
131-
# stretch's "golang-go" package doesn't include GOARM for arm32v5
131+
# stretch's "golang-go" package fails to build (TODO try backports?)
132132
variantArches="$(sed <<<" $variantArches " -e 's/ arm32v5 / /g')"
133-
# ... and "gccgo" in stretch can't build mips64le
133+
# "gccgo" in stretch can't build mips64le
134134
variantArches="$(sed <<<" $variantArches " -e 's/ mips64le / /g')"
135135
fi
136136
;;

versions.json

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -86,6 +86,7 @@
8686
},
8787
"variants": [
8888
"buster",
89+
"stretch",
8990
"alpine3.13",
9091
"alpine3.12",
9192
"windows/windowsservercore-1809",
@@ -181,6 +182,7 @@
181182
},
182183
"variants": [
183184
"buster",
185+
"stretch",
184186
"alpine3.13",
185187
"alpine3.12",
186188
"windows/windowsservercore-1809",

0 commit comments

Comments
 (0)
0