From 0440d1a4b8953f9cb8a39d5c6f4f549157db41e8 Mon Sep 17 00:00:00 2001 From: Matthias Schiffer Date: Sat, 30 Oct 2021 13:13:45 +0200 Subject: Make TaskOutput input hash optional The input hash is used for the summary output only. For empty tasks, we want to skip submitting the task to the runner at all, so there is no input hash. --- crates/runner/src/task.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'crates/runner') diff --git a/crates/runner/src/task.rs b/crates/runner/src/task.rs index 47fa9e4..a6fbd25 100644 --- a/crates/runner/src/task.rs +++ b/crates/runner/src/task.rs @@ -399,7 +399,7 @@ fn run_and_hash_task( move_layer(input_hash, &layer)?; Ok(TaskOutput { - input_hash: *input_hash, + input_hash: Some(*input_hash), layer, outputs, }) -- cgit v1.2.3