feat: update cli plan
All checks were successful
continuous-integration/drone/push Build is passing

Signed-off-by: kjuulh <contact@kjuulh.io>
This commit is contained in:
Kasper Juul Hermansen 2024-08-01 23:06:45 +02:00
parent 939c9f8961
commit 951051a4fe
Signed by: kjuulh
GPG Key ID: 9AA7BC13CE474394
5 changed files with 294 additions and 256 deletions

433
Cargo.lock generated

File diff suppressed because it is too large Load Diff

View File

@ -6,7 +6,7 @@ edition = "2021"
[dependencies]
tokio.workspace = true
dagger-sdk = "0.9.8"
dagger-sdk = "0.11.10"
eyre = { version = "0.6.12" }
dagger-components = { git = "https://git.front.kjuulh.io/kjuulh/dagger-components", branch = "main" }

View File

@ -7,8 +7,7 @@ const BIN_NAME: &str = "cuddle-rust-cli-plan";
#[tokio::main]
async fn main() -> eyre::Result<()> {
let client = dagger_sdk::connect().await?;
dagger_sdk::connect(|client| async move {
let service = &RustService::from(client.clone())
.with_arch(Architecture::Amd64)
.with_os(Os::Linux)
@ -43,6 +42,9 @@ async fn main() -> eyre::Result<()> {
.with_main(drone_templater)
.execute(std::env::args())
.await?;
Ok(())
})
.await?;
Ok(())
}

View File

@ -6,7 +6,7 @@ edition = "2021"
[dependencies]
tokio.workspace = true
dagger-sdk = "0.9.8"
dagger-sdk = "0.11.10"
eyre = { version = "0.6.12" }
dagger-components = { git = "https://git.front.kjuulh.io/kjuulh/dagger-components", branch = "main" }

View File

@ -6,7 +6,7 @@ use cuddle_ci::{cuddle_please, CuddleCI};
#[tokio::main]
async fn main() -> eyre::Result<()> {
let client = dagger_sdk::connect().await?;
dagger_sdk::connect(|client| async move {
let cuddle_file = CuddleFile::from_cuddle_file().await?;
let service = &RustService::from(client.clone())
@ -31,4 +31,7 @@ async fn main() -> eyre::Result<()> {
.await?;
Ok(())
})
.await?;
Ok(())
}