RunCommand: print a warning if the hook isn't run because the project / jobset doens't have it enabled

This commit is contained in:
Graham Christensen
2022-01-24 16:16:58 -05:00
parent 3aa2393091
commit d8b56f022d
2 changed files with 23 additions and 15 deletions

View File

@ -72,6 +72,7 @@ sub isBuildEligibleForDynamicRunCommand {
}
if (! $build->jobset->supportsDynamicRunCommand()) {
warn "DynamicRunCommand hook on " . $build->job . " (" . $build->id . ") rejected: The project or jobset don't have dynamic runcommand enabled.";
return 0;
}