...
Some checks are pending
Rhai Tests / Run Rhai Tests (push) Waiting to run

This commit is contained in:
2025-06-15 21:37:16 +02:00
parent 29a06d2bb4
commit 66d5c8588a
3 changed files with 51 additions and 2 deletions

View File

@@ -5,13 +5,13 @@ fn nerdctl_download(){
let name="nerdctl";
let url="https://github.com/containerd/nerdctl/releases/download/v2.1.2/nerdctl-2.1.2-linux-amd64.tar.gz";
download(url,`/tmp/${name}`,10000);
copy(`/tmp/${name}/*`,"/root/hero/bin/");
copy_bin(`/tmp/${name}/*`);
delete(`/tmp/${name}`);
let name="containerd";
let url="https://github.com/containerd/containerd/releases/download/v2.1.2/containerd-2.1.2-linux-amd64.tar.gz";
download(url,`/tmp/${name}`,20000);
copy(`/tmp/${name}/bin/*`,"/root/hero/bin/");
copy_bin(`/tmp/${name}/bin/*`);
delete(`/tmp/${name}`);
run("apt-get -y install buildah runc");