fix: build
All checks were successful
continuous-integration/drone/push Build is passing

Signed-off-by: kjuulh <contact@kjuulh.io>
This commit is contained in:
2024-11-30 00:11:49 +01:00
parent 184d74bc5d
commit 2b5bc3d66f
2 changed files with 44 additions and 5 deletions

View File

@@ -18,18 +18,17 @@ async fn main() -> eyre::Result<()> {
"libgit2-dev",
"git",
"openssh-client",
"protobuf-compiler",
])
.with_apt_release(&["git", "openssh-client"])
.with_apt_release(&["git", "openssh-client", "protobuf-compiler"])
.with_docker_cli()
.with_cuddle_cli()
.with_kubectl()
.with_apt_ca_certificates()
.with_workspace_crates()
.await
.with_crates(["ci", "crates/*"])
.with_mold("2.3.3")
.with_bin_name(BIN_NAME)
.with_deployment(false)
.with_dagger_bin("0.9.8")
.to_owned();
let drone_templater = &DroneTemplater::new(client, "templates/cuddle-empty-plan.yaml")
@@ -42,7 +41,6 @@ async fn main() -> eyre::Result<()> {
.with_main(drone_templater)
.execute(std::env::args())
.await?;
Ok(())
})
.await?;