-
-
Notifications
You must be signed in to change notification settings - Fork 79
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 <[email protected]>
- Loading branch information
1 parent
1578bc4
commit 56939ff
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 @@ | ||
8fbbdc442cea7cb1d5c499b06467a060d4f91a4e62481b6ad69f291317d1e042 | ||
3fabf4fe4f16d9355701e244a6a08e2958a0e56190ac23c04e78750f225a3a06 |
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.2,go1.21.9 | ||
go1.22.3,go1.21.10 |
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 12110 | ||
|
||
RUN \ | ||
if [ "$TARGETPLATFORM" = "linux/amd64" ]; then \ | ||
export ROOT_DIST=https://dl.google.com/go/go1.21.10.linux-amd64.tar.gz && \ | ||
export ROOT_DIST_SHA=e330e5d977bf4f3bdc157bc46cf41afa5b13d66c914e12fd6b694ccda65fcf92;\ | ||
elif [ "$TARGETPLATFORM" = "linux/arm64" ]; then \ | ||
export ROOT_DIST=https://dl.google.com/go/go1.21.10.linux-arm64.tar.gz && \ | ||
export ROOT_DIST_SHA=428e0b9ecab5762b7c2be000ad1be6f432dccfcd99bb8b8aeeb757d987bfda9d;\ | ||
else \ | ||
echo "Unsupported architecture: $TARGETPLATFORM" && exit 1; \ | ||
fi && \ | ||
$BOOTSTRAP_PURE |
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 |
---|---|---|
@@ -1,2 +1,2 @@ | ||
## GENERATED. DO NOT EDIT DIRECTLY. | ||
FROM go-1.21.9 | ||
FROM go-1.21.10 |
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 1223 | ||
|
||
RUN \ | ||
if [ "$TARGETPLATFORM" = "linux/amd64" ]; then \ | ||
export ROOT_DIST=https://dl.google.com/go/go1.22.3.linux-amd64.tar.gz && \ | ||
export ROOT_DIST_SHA=8920ea521bad8f6b7bc377b4824982e011c19af27df88a815e3586ea895f1b36;\ | ||
elif [ "$TARGETPLATFORM" = "linux/arm64" ]; then \ | ||
export ROOT_DIST=https://dl.google.com/go/go1.22.3.linux-arm64.tar.gz && \ | ||
export ROOT_DIST_SHA=6c33e52a5b26e7aa021b94475587fce80043a727a54ceb0eee2f9fc160646434;\ | ||
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.2 | ||
FROM go-1.22.3 |