feat: update rust plan
Some checks reported errors
continuous-integration/drone/push Build was killed
Some checks reported errors
continuous-integration/drone/push Build was killed
Signed-off-by: kjuulh <contact@kjuulh.io>
This commit is contained in:
parent
5b532dfd26
commit
07fc3746d4
917
Cargo.lock
generated
917
Cargo.lock
generated
File diff suppressed because it is too large
Load Diff
@ -6,7 +6,7 @@ edition = "2021"
|
|||||||
[dependencies]
|
[dependencies]
|
||||||
tokio.workspace = true
|
tokio.workspace = true
|
||||||
|
|
||||||
dagger-sdk = "0.9.8"
|
dagger-sdk = "0.13.7"
|
||||||
eyre = { version = "0.6.12" }
|
eyre = { version = "0.6.12" }
|
||||||
|
|
||||||
dagger-components = { git = "https://git.front.kjuulh.io/kjuulh/dagger-components", branch = "main" }
|
dagger-components = { git = "https://git.front.kjuulh.io/kjuulh/dagger-components", branch = "main" }
|
||||||
|
@ -7,42 +7,45 @@ const BIN_NAME: &str = "cuddle-empty-plan";
|
|||||||
|
|
||||||
#[tokio::main]
|
#[tokio::main]
|
||||||
async fn main() -> eyre::Result<()> {
|
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)
|
||||||
|
.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_workspace_crates()
|
||||||
|
.await
|
||||||
|
.with_mold("2.3.3")
|
||||||
|
.with_bin_name(BIN_NAME)
|
||||||
|
.with_deployment(false)
|
||||||
|
.with_dagger_bin("0.9.8")
|
||||||
|
.to_owned();
|
||||||
|
|
||||||
let service = &RustService::from(client.clone())
|
let drone_templater = &DroneTemplater::new(client, "templates/cuddle-empty-plan.yaml")
|
||||||
.with_arch(Architecture::Amd64)
|
.with_variable("bin_name", BIN_NAME)
|
||||||
.with_os(Os::Linux)
|
.to_owned();
|
||||||
.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_workspace_crates()
|
|
||||||
.await
|
|
||||||
.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")
|
CuddleCI::default()
|
||||||
.with_variable("bin_name", BIN_NAME)
|
.with_pull_request(service)
|
||||||
.to_owned();
|
.with_main(service)
|
||||||
|
.with_main(drone_templater)
|
||||||
|
.execute(std::env::args())
|
||||||
|
.await?;
|
||||||
|
|
||||||
CuddleCI::default()
|
Ok(())
|
||||||
.with_pull_request(service)
|
})
|
||||||
.with_main(service)
|
.await?;
|
||||||
.with_main(drone_templater)
|
|
||||||
.execute(std::env::args())
|
|
||||||
.await?;
|
|
||||||
|
|
||||||
Ok(())
|
Ok(())
|
||||||
}
|
}
|
||||||
|
@ -6,7 +6,7 @@ edition = "2021"
|
|||||||
[dependencies]
|
[dependencies]
|
||||||
tokio.workspace = true
|
tokio.workspace = true
|
||||||
|
|
||||||
dagger-sdk = "0.9.8"
|
dagger-sdk = "0.13.7"
|
||||||
eyre = { version = "0.6.12" }
|
eyre = { version = "0.6.12" }
|
||||||
|
|
||||||
dagger-components = { git = "https://git.front.kjuulh.io/kjuulh/dagger-components", branch = "main" }
|
dagger-components = { git = "https://git.front.kjuulh.io/kjuulh/dagger-components", branch = "main" }
|
||||||
|
@ -1,20 +1,18 @@
|
|||||||
use cuddle_ci::cuddle_file::CuddleFile;
|
|
||||||
use cuddle_ci::rust_service::architecture::{Architecture, Os};
|
|
||||||
use cuddle_ci::rust_service::extensions::*;
|
|
||||||
use cuddle_ci::rust_service::RustService;
|
|
||||||
use cuddle_ci::{cuddle_please, CuddleCI};
|
use cuddle_ci::{cuddle_please, CuddleCI};
|
||||||
|
|
||||||
#[tokio::main]
|
#[tokio::main]
|
||||||
async fn main() -> eyre::Result<()> {
|
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 cuddle_please = &cuddle_please::CuddlePlease::new(client.clone());
|
||||||
|
|
||||||
let cuddle_please = &cuddle_please::CuddlePlease::new(client.clone());
|
CuddleCI::default()
|
||||||
|
.with_main(cuddle_please)
|
||||||
|
.execute(std::env::args())
|
||||||
|
.await?;
|
||||||
|
|
||||||
CuddleCI::default()
|
Ok(())
|
||||||
.with_main(cuddle_please)
|
})
|
||||||
.execute(std::env::args())
|
.await?;
|
||||||
.await?;
|
|
||||||
|
|
||||||
Ok(())
|
Ok(())
|
||||||
}
|
}
|
||||||
|
@ -63,7 +63,7 @@ steps:
|
|||||||
GIT_PASSWORD:
|
GIT_PASSWORD:
|
||||||
from_secret: git_password
|
from_secret: git_password
|
||||||
CI_PREFIX: "/mnt/ci/ci"
|
CI_PREFIX: "/mnt/ci/ci"
|
||||||
DOCKER_HOST: "tcp://192.168.1.233:2376"
|
DOCKER_HOST: "tcp://192.168.1.155:2376"
|
||||||
CUDDLE_PLEASE_TOKEN:
|
CUDDLE_PLEASE_TOKEN:
|
||||||
from_secret: cuddle_please_token
|
from_secret: cuddle_please_token
|
||||||
OP_SERVICE_ACCOUNT_TOKEN:
|
OP_SERVICE_ACCOUNT_TOKEN:
|
||||||
@ -115,7 +115,7 @@ steps:
|
|||||||
GIT_PASSWORD:
|
GIT_PASSWORD:
|
||||||
from_secret: git_password
|
from_secret: git_password
|
||||||
CI_PREFIX: "/mnt/ci/ci"
|
CI_PREFIX: "/mnt/ci/ci"
|
||||||
DOCKER_HOST: "tcp://192.168.1.233:2376"
|
DOCKER_HOST: "tcp://192.168.1.155:2376"
|
||||||
CUDDLE_PLEASE_TOKEN:
|
CUDDLE_PLEASE_TOKEN:
|
||||||
from_secret: cuddle_please_token
|
from_secret: cuddle_please_token
|
||||||
OP_SERVICE_ACCOUNT_TOKEN:
|
OP_SERVICE_ACCOUNT_TOKEN:
|
||||||
|
Loading…
x
Reference in New Issue
Block a user