Skip to content

Commit

Permalink
rebase
Browse files Browse the repository at this point in the history
  • Loading branch information
jrm5100 committed Sep 6, 2024
1 parent bf01d20 commit fa80b91
Show file tree
Hide file tree
Showing 3 changed files with 38 additions and 4 deletions.
36 changes: 36 additions & 0 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions crankshaft/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ wdl-grammar = { workspace = true }
wdl-ast = { workspace = true }
wdl-analysis = { workspace = true }
anyhow = { workspace = true }
tar.workspace = true

[lints.rust]
missing_docs = "warn"
Expand Down
5 changes: 1 addition & 4 deletions crankshaft/examples/docker.rs
Original file line number Diff line number Diff line change
Expand Up @@ -35,10 +35,8 @@ async fn main() {
let task = Task::builder()
.name("my-example-task")
.description("a longer description")
.unwrap()
.extend_inputs(vec![input])
.unwrap()
.extend_executors(vec![
.extend_executions(vec![
Execution::builder()
.image("ubuntu")
.args(&[
Expand All @@ -54,7 +52,6 @@ async fn main() {
.try_build()
.unwrap(),
])
.unwrap()
.extend_volumes(vec!["/volA".to_string(), "/volB".to_string()])
.try_build()
.unwrap();
Expand Down

0 comments on commit fa80b91

Please sign in to comment.