Kaydet (Commit) 07503b88 authored tarafından Andre Fischer's avatar Andre Fischer

Temporary hack to "convince" build.pl to produce usefull log files (no html) on the

buildbot.
üst 7de1caa8
...@@ -1558,7 +1558,16 @@ sub get_options { ...@@ -1558,7 +1558,16 @@ sub get_options {
if (!$html) { if (!$html) {
print_error("\"--html_path\" switch is used only with \"--html\"") if ($html_path); print_error("\"--html_path\" switch is used only with \"--html\"") if ($html_path);
print_error("\"--dontgraboutput\" switch is used only with \"--html\"") if ($dont_grab_output); print_error("\"--dontgraboutput\" switch is used only with \"--html\"") if ($dont_grab_output);
}; }
else
{
# Desperate HACK to get readable output from buildbot when built is terminated by buildbot
# due to timeout.
if (defined $ENV{"BUILD_TYPE"} && ($ENV{"BUILD_TYPE"} =~ /\bSWEXT\b/))
{
$html = 0;
}
}
if ((scalar keys %exclude_branches) && !$build_all_parents) { if ((scalar keys %exclude_branches) && !$build_all_parents) {
print_error("\"--exclude_branch_from\" is not applicable for one module builds!!"); print_error("\"--exclude_branch_from\" is not applicable for one module builds!!");
}; };
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment