build.pl (9eac18a2) | build.pl (509a45e5) |
---|---|
1: 2 eval 'exec perl -S $0 ${1+"$@"}' 3 if 0; 4#************************************************************** 5# 6# Licensed to the Apache Software Foundation (ASF) under one 7# or more contributor license agreements. See the NOTICE file 8# distributed with this work for additional information --- 1545 unchanged lines hidden (view full) --- 1554 next; 1555 }; 1556 push (@dmake_args, $arg); 1557 }; 1558 if (!$html) { 1559 print_error("\"--html_path\" switch is used only with \"--html\"") if ($html_path); 1560 print_error("\"--dontgraboutput\" switch is used only with \"--html\"") if ($dont_grab_output); 1561 } | 1: 2 eval 'exec perl -S $0 ${1+"$@"}' 3 if 0; 4#************************************************************** 5# 6# Licensed to the Apache Software Foundation (ASF) under one 7# or more contributor license agreements. See the NOTICE file 8# distributed with this work for additional information --- 1545 unchanged lines hidden (view full) --- 1554 next; 1555 }; 1556 push (@dmake_args, $arg); 1557 }; 1558 if (!$html) { 1559 print_error("\"--html_path\" switch is used only with \"--html\"") if ($html_path); 1560 print_error("\"--dontgraboutput\" switch is used only with \"--html\"") if ($dont_grab_output); 1561 } |
1562 else 1563 { 1564 # Desperate HACK to get readable output from buildbot when built is terminated by buildbot 1565 # due to timeout. 1566 if (defined $ENV{"BUILD_TYPE"} && ($ENV{"BUILD_TYPE"} =~ /\bSWEXT\b/)) 1567 { 1568 $html = 0; 1569 } 1570 } | |
1571 if ((scalar keys %exclude_branches) && !$build_all_parents) { 1572 print_error("\"--exclude_branch_from\" is not applicable for one module builds!!"); 1573 }; 1574 $grab_output = 0 if ($dont_grab_output); 1575 print_error('Switches --with_branches and --all collision') if ($build_from_with_branches && $build_all_cont); 1576 print_error('Switch --skip is for building multiple modules only!!') if ((scalar keys %skip_modules) && (!$build_all_parents)); 1577# print_error('Please prepare the workspace on one of UNIX platforms') if ($prepare && ($ENV{GUI} ne 'UNX')); 1578 print_error('Switches --with_branches and --since collision') if ($build_from_with_branches && $build_since); --- 1999 unchanged lines hidden --- | 1562 if ((scalar keys %exclude_branches) && !$build_all_parents) { 1563 print_error("\"--exclude_branch_from\" is not applicable for one module builds!!"); 1564 }; 1565 $grab_output = 0 if ($dont_grab_output); 1566 print_error('Switches --with_branches and --all collision') if ($build_from_with_branches && $build_all_cont); 1567 print_error('Switch --skip is for building multiple modules only!!') if ((scalar keys %skip_modules) && (!$build_all_parents)); 1568# print_error('Please prepare the workspace on one of UNIX platforms') if ($prepare && ($ENV{GUI} ne 'UNX')); 1569 print_error('Switches --with_branches and --since collision') if ($build_from_with_branches && $build_since); --- 1999 unchanged lines hidden --- |