Browse Source

Skip path checks for nodes with build command

tags/v0.3.12-rc0
Philipp Oppermann 1 year ago
parent
commit
ead79013c8
Failed to extract signature
1 changed files with 3 additions and 1 deletions
  1. +3
    -1
      libraries/core/src/descriptor/validate.rs

+ 3
- 1
libraries/core/src/descriptor/validate.rs View File

@@ -43,6 +43,8 @@ pub fn check_dataflow(
info!("skipping path check for remote node `{}`", node.id);
}
}
} else if custom.build.is_some() {
info!("skipping path check for node with build command");
} else {
resolve_path(source, working_dir).wrap_err_with(|| {
format!("Could not find source path `{}`", source)
@@ -51,7 +53,7 @@ pub fn check_dataflow(
}
},
dora_message::descriptor::NodeSource::GitBranch { repo, rev } => {
// TODO: implement git repo check
info!("skipping check for node with git source");
}
},
descriptor::CoreNodeKind::Runtime(node) => {


Loading…
Cancel
Save