From 6948b19b79f13bb5c46edcb6a18b936c1b137135 Mon Sep 17 00:00:00 2001 From: kjuulh Date: Sat, 3 Feb 2024 20:26:52 +0100 Subject: [PATCH] feat: update image Signed-off-by: kjuulh --- ci/src/main.rs | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/ci/src/main.rs b/ci/src/main.rs index 92635ec..84f8f4b 100644 --- a/ci/src/main.rs +++ b/ci/src/main.rs @@ -12,7 +12,18 @@ async fn main() -> eyre::Result<()> { let service = RustService::from(client) .with_arch(Architecture::Amd64) .with_os(Os::Linux) - .with_apt(&["clang", "libssl-dev", "libz-dev", "libgit2-dev"]) + .with_apt(&[ + "clang", + "libssl-dev", + "libz-dev", + "libgit2-dev", + "git", + "openssh-client", + ]) + .with_apt_release(&["git", "openssh-client"]) + .with_docker_cli() + .with_cuddle_cli() + .with_kubectl() .with_apt_ca_certificates() .with_crates(["ci", "crates/*"]) .with_mold("2.3.3")