From 1c3ea6396705202347bbf98a41ccb17d0692f067 Mon Sep 17 00:00:00 2001 From: kjuulh Date: Sat, 6 Apr 2024 23:26:09 +0200 Subject: [PATCH] feat: add empty plan Signed-off-by: kjuulh --- crates/cuddle-empty-plan/src/main.rs | 14 -------------- 1 file changed, 14 deletions(-) diff --git a/crates/cuddle-empty-plan/src/main.rs b/crates/cuddle-empty-plan/src/main.rs index 0bc0a30..965c63a 100644 --- a/crates/cuddle-empty-plan/src/main.rs +++ b/crates/cuddle-empty-plan/src/main.rs @@ -9,23 +9,9 @@ async fn main() -> eyre::Result<()> { let client = dagger_sdk::connect().await?; let cuddle_file = CuddleFile::from_cuddle_file().await?; - let service = &RustService::from(client.clone()) - .with_arch(Architecture::Amd64) - .with_os(Os::Linux) - .with_apt(&["libssl-dev", "libz-dev", "libpq-dev", "protobuf-compiler"]) - .with_apt_release(&["libssl-dev", "libz-dev", "libpq-dev"]) - .with_cuddle_file(&cuddle_file) - .with_apt_ca_certificates() - .with_workspace_crates() - .await - .with_mold("2.3.3") - .to_owned(); - let cuddle_please = &cuddle_please::CuddlePlease::new(client.clone()); CuddleCI::default() - .with_pull_request(service) - .with_main(service) .with_main(cuddle_please) .execute(std::env::args()) .await?;