-
-
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
2be8f56
commit c7b2394
Showing
6 changed files
with
21 additions
and
21 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 @@ | ||
21f9d90f875700df74056b46fbfef534de080d0fc27b8f1a210e9c92fa14c7a5 | ||
310af48f6920632f56322647ade674e3026d3135f83767d9bfea2025440c1490 |
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.6,go1.21.13 | ||
go1.23.0,go1.22.6 |
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 1230 | ||
|
||
RUN \ | ||
if [ "$TARGETPLATFORM" = "linux/amd64" ]; then \ | ||
export ROOT_DIST=https://dl.google.com/go/go1.23.0.linux-amd64.tar.gz && \ | ||
export ROOT_DIST_SHA=905a297f19ead44780548933e0ff1a1b86e8327bb459e92f9c0012569f76f5e3;\ | ||
elif [ "$TARGETPLATFORM" = "linux/arm64" ]; then \ | ||
export ROOT_DIST=https://dl.google.com/go/go1.23.0.linux-arm64.tar.gz && \ | ||
export ROOT_DIST_SHA=62788056693009bcf7020eedc778cdd1781941c6145eab7688bd087bce0f8659;\ | ||
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.13 | ||
FROM go-1.23.0 |
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 techknowlogick/xgo:go-1.22.x | ||
FROM techknowlogick/xgo:go-1.23.x |