mirror of
https://github.com/kjuulh/dagger-rs.git
synced 2024-11-08 19:11:47 +01:00
39 lines
948 B
Rust
39 lines
948 B
Rust
use dagger_sdk::gen::HostDirectoryOpts;
|
|
|
|
fn main() -> eyre::Result<()> {
|
|
let client = dagger_sdk::client::connect()?;
|
|
|
|
let host_source_dir = client.host().directory(
|
|
"examples/test-the-application/app".into(),
|
|
Some(HostDirectoryOpts {
|
|
exclude: Some(vec!["node_modules".into(), "ci/".into()]),
|
|
include: None,
|
|
}),
|
|
);
|
|
|
|
let source = client
|
|
.container(None)
|
|
.from("node:16".into())
|
|
.with_mounted_directory("/src".into(), host_source_dir.id());
|
|
|
|
let runner = source
|
|
.with_workdir("/src".into())
|
|
.with_exec(vec!["npm".into(), "install".into()], None);
|
|
|
|
let out = runner
|
|
.with_exec(
|
|
vec![
|
|
"npm".into(),
|
|
"test".into(),
|
|
"--".into(),
|
|
"--watchAll=false".into(),
|
|
],
|
|
None,
|
|
)
|
|
.stderr();
|
|
|
|
println!("{}", out);
|
|
|
|
Ok(())
|
|
}
|