Adding executor description for verbose output, adding output directory for build artifacts
This commit is contained in:
@@ -88,6 +88,25 @@ DaggyRunnerTaskExecutor::~DaggyRunnerTaskExecutor()
|
||||
monitorWorker_.join();
|
||||
}
|
||||
|
||||
std::string DaggyRunnerTaskExecutor::description() const
|
||||
{
|
||||
std::stringstream ss;
|
||||
ss << "DaggyRunnerTaskExecutor running with " << runners_.size()
|
||||
<< " runners: [";
|
||||
bool first = true;
|
||||
for (const auto &[runner, _] : runners_) {
|
||||
if (first) {
|
||||
first = false;
|
||||
}
|
||||
else {
|
||||
ss << ", ";
|
||||
}
|
||||
ss << runner;
|
||||
}
|
||||
ss << "]";
|
||||
return ss.str();
|
||||
}
|
||||
|
||||
// Validates the job to ensure that all required values are set and are of
|
||||
// the right type,
|
||||
bool DaggyRunnerTaskExecutor::validateTaskParameters(const ConfigValues &job)
|
||||
|
||||
Reference in New Issue
Block a user