-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: update container runtime full archive to nerdctl v2.0.2-1735857…
…497 (#472) This change updates the container runtime full archive to nerdctl v2.0.2-1735857497 which was manually built from nerdctl v2.0.2 and cherry-picks containerd/nerdctl@f917e5c Signed-off-by: Austin Vazquez <[email protected]>
- Loading branch information
1 parent
9716721
commit 49ebd39
Showing
5 changed files
with
32 additions
and
19 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
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,7 +1,9 @@ | ||
ARTIFACT_BASE_URL=https://github.com/containerd/nerdctl/releases/download/v1.7.7 | ||
ARTIFACT_BASE_URL=https://deps.runfinch.com | ||
|
||
AARCH64_ARTIFACT=nerdctl-full-1.7.7-linux-arm64.tar.gz | ||
AARCH64_256_DIGEST=b161a20c0e41f9ad999e8411e23c58ece4b3e584ae90b4252b76a39eee4a0c31 | ||
AARCH64_ARTIFACT_PATHING=aarch64 | ||
AARCH64_ARTIFACT=nerdctl-full-2.0.2-1735857497-linux-arm64.tar.gz | ||
AARCH64_256_DIGEST=1ca028ce3a58afe6733df003b026c2305df9d61653dc206045161024608caf43 | ||
|
||
X86_64_ARTIFACT=nerdctl-full-1.7.7-linux-amd64.tar.gz | ||
X86_64_256_DIGEST=a731eac93e8e9dda1a0d76dc1606438deb0668ea7d6bd5c5af436353ed9f65c5 | ||
X86_64_ARTIFACT_PATHING=x86-64 | ||
X86_64_ARTIFACT=nerdctl-full-2.0.2-1735857497-linux-amd64.tar.gz | ||
X86_64_256_DIGEST=3708ecf52f5039767e85962c76ab566b8bd514c985748789a4417e1f248b3075 |
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
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,21 +1,23 @@ | ||
module finch-core | ||
|
||
go 1.22 | ||
go 1.22.0 | ||
|
||
toolchain go1.23.4 | ||
|
||
require ( | ||
github.com/onsi/ginkgo/v2 v2.20.2 | ||
github.com/onsi/ginkgo/v2 v2.22.1 | ||
github.com/onsi/gomega v1.36.1 | ||
github.com/runfinch/common-tests v0.7.22 | ||
github.com/runfinch/common-tests v0.9.0 | ||
) | ||
|
||
require ( | ||
github.com/go-logr/logr v1.4.2 // indirect | ||
github.com/go-task/slim-sprig/v3 v3.0.0 // indirect | ||
github.com/google/go-cmp v0.6.0 // indirect | ||
github.com/google/pprof v0.0.0-20240827171923-fa2c70bbbfe5 // indirect | ||
github.com/google/pprof v0.0.0-20241210010833-40e02aabc2ad // indirect | ||
golang.org/x/net v0.33.0 // indirect | ||
golang.org/x/sys v0.28.0 // indirect | ||
golang.org/x/text v0.21.0 // indirect | ||
golang.org/x/tools v0.24.0 // indirect | ||
golang.org/x/tools v0.28.0 // indirect | ||
gopkg.in/yaml.v3 v3.0.1 // indirect | ||
) |
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