-
-
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 <[email protected]>
- Loading branch information
1 parent
2eafbd3
commit 976b12f
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 @@ | ||
c5e1718bdab6a6d22b720bc977f80a6552b81ca0fbbf77b86c19954536c64c87 | ||
f29ea2b6607fb11335818a464eb3f04c377ed8d418a3a5f8683c74af0631ee71 |
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.23.4,go1.22.10 | ||
go1.23.5,go1.22.11 |
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=12211 | ||
|
||
RUN \ | ||
if [ "$TARGETPLATFORM" = "linux/amd64" ]; then \ | ||
export ROOT_DIST=https://dl.google.com/go/go1.22.11.linux-amd64.tar.gz && \ | ||
export ROOT_DIST_SHA=0fc88d966d33896384fbde56e9a8d80a305dc17a9f48f1832e061724b1719991;\ | ||
elif [ "$TARGETPLATFORM" = "linux/arm64" ]; then \ | ||
export ROOT_DIST=https://dl.google.com/go/go1.22.11.linux-arm64.tar.gz && \ | ||
export ROOT_DIST_SHA=9ebfcab26801fa4cf0627c6439db7a4da4d3c6766142a3dd83508240e4f21031;\ | ||
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.10 | ||
FROM go-1.22.11 |
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=1235 | ||
|
||
RUN \ | ||
if [ "$TARGETPLATFORM" = "linux/amd64" ]; then \ | ||
export ROOT_DIST=https://dl.google.com/go/go1.23.5.linux-amd64.tar.gz && \ | ||
export ROOT_DIST_SHA=cbcad4a6482107c7c7926df1608106c189417163428200ce357695cc7e01d091;\ | ||
elif [ "$TARGETPLATFORM" = "linux/arm64" ]; then \ | ||
export ROOT_DIST=https://dl.google.com/go/go1.23.5.linux-arm64.tar.gz && \ | ||
export ROOT_DIST_SHA=47c84d332123883653b70da2db7dd57d2a865921ba4724efcdf56b5da7021db0;\ | ||
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.23.4 | ||
FROM go-1.23.5 |