dagger-rs/crates/dagger-sdk/examples/test-the-application/main.rs
kjuulh 94336d0637 feat(sdk): move to &str instead of String and introduce builder.
This will make the api much easier to use, as we can now rely on ""
instead of "".into() for normal string values.

Introduced builder as well, which makes it much easier to use *Opts, as
it can handle the building of that, and get the benefits from String ->
&str, as that is currently not allowed for optional values
2023-02-19 18:00:04 +01:00

32 lines
785 B
Rust

use dagger_sdk::HostDirectoryOpts;
fn main() -> eyre::Result<()> {
let client = dagger_sdk::connect()?;
let host_source_dir = client.host().directory(
"examples/test-the-application/app",
Some(HostDirectoryOpts {
exclude: Some(vec!["node_modules", "ci/"]),
include: None,
marker: std::marker::PhantomData,
}),
);
let source = client
.container(None)
.from("node:16")
.with_mounted_directory("/src", host_source_dir.id()?);
let runner = source
.with_workdir("/src")
.with_exec(vec!["npm", "install"], None);
let out = runner
.with_exec(vec!["npm", "test", "--", "--watchAll=false"], None)
.stderr()?;
println!("{}", out);
Ok(())
}