-
-
Notifications
You must be signed in to change notification settings - Fork 80
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Co-authored-by: techknowlogick <techknowlogick@users.noreply.github.com>
- Loading branch information
1 parent
45b9ea6
commit 770b8ea
Showing
8 changed files
with
38 additions
and
38 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
8705e9031d342004c527cc645d84349d93f11fd78ee19dd6eba3bd75e8577cb1 | ||
5ddbd0ebcff1bbc8e265ff041994181b7ce27444af80935c6ecc7fe4f48f4eb9 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
go1.22.0,go1.21.7 | ||
go1.22.1,go1.21.8 |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
## GENERATED. DO NOT EDIT DIRECTLY. | ||
FROM toolchain | ||
|
||
ARG TARGETPLATFORM | ||
ENV GO_VERSION 1218 | ||
|
||
RUN \ | ||
if [ "$TARGETPLATFORM" = "linux/amd64" ]; then \ | ||
export ROOT_DIST=https://dl.google.com/go/go1.21.8.linux-amd64.tar.gz && \ | ||
export ROOT_DIST_SHA=538b3b143dc7f32b093c8ffe0e050c260b57fc9d57a12c4140a639a8dd2b4e4f;\ | ||
elif [ "$TARGETPLATFORM" = "linux/arm64" ]; then \ | ||
export ROOT_DIST=https://dl.google.com/go/go1.21.8.linux-arm64.tar.gz && \ | ||
export ROOT_DIST_SHA=3c19113c686ffa142e9159de1594c952dee64d5464965142d222eab3a81f1270;\ | ||
else \ | ||
echo "Unsupported architecture: $TARGETPLATFORM" && exit 1; \ | ||
fi && \ | ||
$BOOTSTRAP_PURE |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
## GENERATED. DO NOT EDIT DIRECTLY. | ||
FROM go-1.21.7 | ||
FROM go-1.21.8 |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
## GENERATED. DO NOT EDIT DIRECTLY. | ||
FROM toolchain | ||
|
||
ARG TARGETPLATFORM | ||
ENV GO_VERSION 1221 | ||
|
||
RUN \ | ||
if [ "$TARGETPLATFORM" = "linux/amd64" ]; then \ | ||
export ROOT_DIST=https://dl.google.com/go/go1.22.1.linux-amd64.tar.gz && \ | ||
export ROOT_DIST_SHA=aab8e15785c997ae20f9c88422ee35d962c4562212bb0f879d052a35c8307c7f;\ | ||
elif [ "$TARGETPLATFORM" = "linux/arm64" ]; then \ | ||
export ROOT_DIST=https://dl.google.com/go/go1.22.1.linux-arm64.tar.gz && \ | ||
export ROOT_DIST_SHA=e56685a245b6a0c592fc4a55f0b7803af5b3f827aaa29feab1f40e491acf35b8;\ | ||
else \ | ||
echo "Unsupported architecture: $TARGETPLATFORM" && exit 1; \ | ||
fi && \ | ||
$BOOTSTRAP_PURE |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
## GENERATED. DO NOT EDIT DIRECTLY. | ||
FROM go-1.22.0 | ||
FROM go-1.22.1 |