5 Copyright (c) 2003-2010, Andrew Dunstan
7 See accompanying License file for license details
11 ####################################################
15 NAME: run_build.pl - script to run exim buildfarm
19 run_build.pl [option ...] [branchname]
21 AUTHOR: Andrew Dunstan
25 See http://wiki.exim.org/wiki/PostgreSQL_Buildfarm_Howto
29 https://github.com/EximBuildFarm/client-code
33 ###################################################
35 use vars qw($VERSION); $VERSION = 'REL_0.1';
40 use Fcntl qw(:flock :seek);
47 use POSIX qw(:signal_h strftime);
49 use Cwd qw(abs_path getcwd);
52 # save a copy of the original enviroment for reporting
53 # save it early to reduce the risk of prior mangling
54 use vars qw($orig_env);
59 while (my ($k,$v) = each %ENV)
62 # report all the keys but only values for whitelisted settings
63 # this is to stop leaking of things like passwords
66 $k =~ /^PG(?!PASSWORD)|MAKE|CC|CPP|FLAG|LIBRAR|INCLUDE/
67 ||$k =~/^(HOME|LOGNAME|USER|PATH|SHELL)$/
76 use EximBuild::Options;
77 use EximBuild::WebTxn;
80 my $orig_dir = getcwd();
83 # make sure we exit nicely on any normal interrupt
84 # so the cleanup handler gets called.
85 # that lets us stop the db if it's running and
86 # remove the inst and exim directories
87 # so the next run can start clean.
89 foreach my $sig (qw(INT TERM HUP QUIT))
91 $SIG{$sig}=\&interrupt_exit;
94 # copy command line before processing - so we can later report it
97 my @invocation_args = (@ARGV);
99 # process the command line
100 EximBuild::Options::fetch_options();
102 die "only one of --from-source and --from-source-clean allowed"
103 if ($from_source && $from_source_clean);
105 die "only one of --skip-steps and --only-steps allowed"
106 if ($skip_steps && $only_steps);
108 $verbose=1 if (defined($verbose) && $verbose==0);
109 $verbose ||= 0; # stop complaints about undefined var in numeric comparison
113 $verbose=1 unless $verbose;
120 use vars qw(%skip_steps %only_steps);
122 if ($skip_steps =~ /\S/)
124 %skip_steps = map {$_ => 1} split(/\s+/,$skip_steps);
127 if ($only_steps =~ /\S/)
129 %only_steps = map {$_ => 1} split(/\s+/,$only_steps);
132 # Currently only specifying a branch is actually used.
133 # Specifying a different repo is just a wishlist item .
134 use vars qw($branch $repo);
135 my ($arg1,$arg2) = (shift,shift);
136 $branch = $arg2 ? $arg2 :
139 $repo = $arg2 ? $arg1 : 'exim';
140 my $explicit_branch = $branch;
142 print_help() if ($help);
145 # process config file
149 # get the config data into some local variables
151 $buildroot,$target,$animal, $print_success,
152 $aux_path,$trigger_exclude,$trigger_include,$secret,
153 $keep_errs,$force_every, $make, $optional_steps,
154 $use_vpath,$tar_log_cmd, $using_msvc, $extra_config,
155 $make_jobs, $core_file_glob
158 qw(build_root target animal print_success aux_path trigger_exclude
159 trigger_include secret keep_error_builds force_every make optional_steps
160 use_vpath tar_log_cmd using_msvc extra_config make_jobs core_file_glob)
163 #default is no parallel build
166 # default core file pattern is Linux, which used to be hardcoded
167 $core_file_glob ||= 'core*';
170 if (defined($EximBuild::conf{trigger_filter}))
172 $trigger_exclude = $EximBuild::conf{trigger_filter};
175 my $scm_timeout_secs = $EximBuild::conf{scm_timeout_secs}
176 || $EximBuild::conf{cvs_timeout_secs};
178 print scalar(localtime()),": buildfarm run for $animal:$branch starting\n"
181 # Allow commandline overrides of conf variables
182 foreach my $arg ( @{$EximBuild::Options::overrides} )
184 if (my ($key,$val) = split '=', $arg)
186 $EximBuild::conf{$key} = $val;
187 printf "Commandline override: '$key' = '%s'\n", $EximBuild::conf{$key}
192 if (ref($force_every) eq 'HASH')
194 $force_every = $force_every->{$branch} || $force_every->{default};
197 my $config_opts = $EximBuild::conf{config_opts};
198 my $scm = new EximBuild::SCM \%EximBuild::conf;
202 if (exists $EximBuild::conf{base_port})
204 $buildport = $EximBuild::conf{base_port};
205 if ($branch =~ /REL(\d+)_(\d+)/)
207 $buildport += (10 * ($1 - 7)) + $2;
213 # support for legacy config style
214 $buildport = $EximBuild::conf{branch_ports}->{$branch} || 5999;
217 $ENV{EXTRA_REGRESS_OPTS} = "--port=$buildport";
219 $tar_log_cmd ||= "tar -z -cf runlogs.tgz *.log";
221 my $logdirname = "lastrun-logs";
223 if ($from_source || $from_source_clean)
225 $from_source ||= $from_source_clean;
226 die "sourceroot $from_source not absolute"
227 unless $from_source =~ m!^/!;
229 # we need to know where the lock should go, so unless the path
230 # contains HEAD we require it to be specified.
231 die "must specify branch explicitly with from_source"
232 unless ($explicit_branch || $from_source =~ m!/HEAD/!);
237 $logdirname = "fromsource-logs";
241 if ($branch eq 'HEAD' || $branch ge 'REL8_4')
244 # non-C locales are not regression-safe before 8.4
245 @locales = @{$EximBuild::conf{locales}} if exists $EximBuild::conf{locales};
247 unshift(@locales,'C') unless grep {$_ eq "C"} @locales;
250 # several people have run into these
252 if ( `uname -s 2>&1 ` =~ /CYGWIN/i )
254 my @procs = `ps -ef`;
255 die "cygserver not running" unless(grep {/cygserver/} @procs);
258 if ( $ccachedir = $EximBuild::conf{build_env}->{CCACHE_DIR} )
261 # ccache is smart enough to create what you tell it is the cache dir, but
262 # not smart enough to build the whole path. mkpath croaks on error, so
266 $ccachedir = abs_path($ccachedir);
271 die "no aux_path in config file" unless $aux_path;
274 die "cannot run as root/Administrator" unless ($using_msvc or $> > 0);
276 my $devnull = $using_msvc ? "nul" : "/dev/null";
280 $scm->check_access($using_msvc);
283 my $st_prefix = "$animal.";
285 my $exim = $from_source || $scm->get_build_path($use_vpath);
287 # set environment from config
288 while (my ($envkey,$envval) = each %{$EximBuild::conf{build_env}})
290 $ENV{$envkey}=$envval;
293 # change to buildroot for this branch or die
294 die "no buildroot" unless $buildroot;
296 unless ($buildroot =~ m!^/!
297 or($using_msvc and $buildroot =~ m![a-z]:[/\\]!i ))
299 die "buildroot $buildroot not absolute";
302 die "$buildroot does not exist or is not a directory" unless -d $buildroot;
304 chdir $buildroot || die "chdir to $buildroot: $!";
306 mkdir $branch unless -d $branch;
307 chdir $branch || die "chdir to $buildroot/$branch";
309 # rename legacy status files/directories
310 foreach my $oldfile (glob("last*"))
312 move $oldfile, "$st_prefix$oldfile";
315 my $branch_root = getcwd();
317 # make sure we are using GNU make
318 die "$make is not GNU Make - please fix config file"
322 foreach my $module (@{$EximBuild::conf{modules}})
325 # fill in the name of the module here, so use double quotes
326 # so everything BUT the module name needs to be escaped
328 require EximBuild::Modules::$module;
329 EximBuild::Modules::${module}::setup(
346 open($lockfile, ">builder.LCK") || die "opening lockfile: $!";
348 # only one builder at a time allowed per branch
349 # having another build running is not a failure, and so we do not output
350 # a failure message under this condition.
353 die "acquiring lock in $buildroot/$branch/builder.LCK"
354 unless flock($lockfile,LOCK_EX|LOCK_NB);
356 elsif ( !flock($lockfile,LOCK_EX|LOCK_NB) )
358 print "Another process holds the lock on "
359 ."$buildroot/$branch/builder.LCK. Exiting."
364 die "$buildroot/$branch has $exim or inst directories!"
365 if ((!$from_source && -d $exim) || -d "inst");
367 # we are OK to run if we get here
370 # check if file present for forced run
371 my $forcefile = $st_prefix . "force-one-run";
378 # try to allow core files to be produced.
379 # another way would be for the calling environment
380 # to call ulimit. We do this in an eval so failure is
383 require BSD::Resource;
384 BSD::Resource->import();
386 # explicit sub calls here. using & keeps compiler happy
387 my $coreok = setrlimit(&RLIMIT_CORE,&RLIM_INFINITY,&RLIM_INFINITY);
388 die "setrlimit" unless $coreok;
390 warn "failed to unlimit core size: $@" if $@ && $verbose > 1;
392 # the time we take the snapshot
394 my $installdir = "$buildroot/$branch/inst";
399 # cleanup handler for all exits
404 unlink $ENV{TEMP_CONFIG} if $extraconf;
406 # if we have the lock we must already be in the build root, so
407 # removing things there should be safe.
408 # there should only be anything to cleanup if we didn't have
410 if ( $have_lock && -d "$exim")
415 system(qq{"bin/pg_ctl" -D data stop >$devnull 2>&1});
416 foreach my $loc (@locales)
418 next unless -d "data-$loc";
419 system(qq{"bin/pg_ctl" -D "data-$loc" stop >$devnull 2>&1});
423 if ( !$from_source && $keep_errs)
425 print "moving kept error trees\n" if $verbose;
426 my $timestr = strftime "%Y-%m-%d_%H-%M-%S", localtime($now);
427 unless (move("$exim", "eximkeep.$timestr"))
429 print "error renaming '$exim' to 'eximkeep.$timestr': $!";
433 unless(move("inst", "instkeep.$timestr"))
435 print "error renaming 'inst' to 'instkeep.$timestr': $!";
441 rmtree("inst") unless $keepall;
442 rmtree("$exim") unless ($from_source || $keepall);
445 # only keep the cache in cases of success
446 rmtree("$ccachedir") if $ccachedir;
449 # get the modules to clean up after themselves
450 process_module_hooks('cleanup');
457 # vpath builds leave some stuff lying around in the
458 # source dir, unfortunately. This should clean it up.
462 unlink("builder.LCK");
466 # Prepend the DEFAULT settings (if any) to any settings for the
467 # branch. Since we're mangling this, deep clone $extra_config
468 # so the config object is kept as given. This is done using
469 # Dumper() because the MSys DTK perl doesn't have Storable. This
470 # is less efficient but it hardly matters here for this shallow
473 $extra_config = eval Dumper($extra_config);
475 if ($extra_config && $extra_config->{DEFAULT})
477 if (!exists $extra_config->{$branch})
479 $extra_config->{$branch} = $extra_config->{DEFAULT};
483 unshift(@{$extra_config->{$branch}}, @{$extra_config->{DEFAULT}});
487 if ($extra_config && $extra_config->{$branch})
490 ($extraconf,$tmpname) =File::Temp::tempfile(
492 DIR => File::Spec->tmpdir(),
495 die 'no $tmpname!' unless $tmpname;
496 $ENV{TEMP_CONFIG} = $tmpname;
497 foreach my $line (@{$extra_config->{$branch}})
499 print $extraconf "$line\n";
501 autoflush $extraconf 1;
504 use vars qw($steps_completed);
505 $steps_completed = "";
508 my @changed_since_success;
511 my $last_success_snap;
516 if ($from_source_clean)
518 print time_str(),"cleaning source in $exim ...\n";
521 elsif (!$from_source)
524 # see if we need to run the tests (i.e. if either something has changed or
525 # we have gone over the force_every heartbeat time)
527 print time_str(),"checking out source ...\n" if $verbose;
531 $timeout_pid = spawn(\&scm_timeout,$scm_timeout_secs)
532 if $scm_timeout_secs;
534 $savescmlog = $scm->checkout($branch);
535 $steps_completed = "SCM-checkout";
537 process_module_hooks('checkout',$savescmlog);
542 # don't kill me, I finished in time
543 if (kill(SIGTERM, $timeout_pid))
547 waitpid($timeout_pid,0);
551 print time_str(),"checking if build run needed ...\n" if $verbose;
553 # transition to new time processing
554 unlink "last.success";
556 # get the timestamp data
557 $last_status = find_last('status') || 0;
558 $last_run_snap = find_last('run.snap');
559 $last_success_snap = find_last('success.snap');
560 $forcerun = 1 unless (defined($last_run_snap));
562 # updated by find_changed to last mtime of any file in the repo
565 # see if we need to force a build
569 &&$last_status+($force_every*3600) < $now);
570 $last_status = 0 if $forcerun;
572 # see what's changed since the last time we did work
573 $scm->find_changed(\$current_snap,$last_run_snap, $last_success_snap,
574 \@changed_files,\@changed_since_success);
576 #ignore changes to files specified by the trigger exclude filter, if any
577 if (defined($trigger_exclude))
579 @filtered_files = grep { !m[$trigger_exclude] } @changed_files;
583 @filtered_files = @changed_files;
586 #ignore changes to files NOT specified by the trigger include filter, if any
587 if (defined($trigger_include))
589 @filtered_files = grep { m[$trigger_include] } @filtered_files;
592 my $modules_need_run;
594 process_module_hooks('need-run',\$modules_need_run);
596 # if no build required do nothing
597 if ($last_status && !@filtered_files && !$modules_need_run)
600 "No build required: last status = ",scalar(gmtime($last_status)),
601 " GMT, current snapshot = ",scalar(gmtime($current_snap))," GMT,",
602 " changed files = ",scalar(@filtered_files),"\n"
608 # get version info on both changed files sets
609 # XXX modules support?
611 $scm->get_versions(\@changed_files);
612 $scm->get_versions(\@changed_since_success);
614 } # end of unless ($from_source)
618 writelog('SCM-checkout',$savescmlog) unless $from_source;
619 $scm->log_id() unless $from_source;
621 # copy/create according to vpath/scm settings
625 print time_str(),"creating vpath build dir $exim ...\n" if $verbose;
626 mkdir $exim || die "making $exim: $!";
628 elsif (!$from_source && $scm->copy_source_required())
630 print time_str(),"copying source to $exim ...\n" if $verbose;
632 $scm->copy_source($using_msvc);
635 process_module_hooks('setup-target');
639 set_last('status',$now) unless $nostatus;
640 set_last('run.snap',$current_snap) unless $nostatus;
642 my $started_times = 0;
643 print time_str(),"running configure ...\n" if $verbose;
645 # each of these routines will call send_result, which calls exit,
646 # on any error, so each step depends on success in the previous
654 make_test() if (check_optional_step('make_test'));
656 make_doc() if (check_optional_step('build_docs'));
658 ##check_port_is_ok($buildport,'Post');
660 # if we get here everything went fine ...
662 my $saved_config = get_config_summary();
664 rmtree("inst"); # only keep failures
665 rmtree("$exim") unless ($from_source || $keepall);
667 print(time_str(),"OK\n") if $verbose;
673 ############## end of main program ###########################
678 usage: $0 [options] [branch]
680 where options are one or more of:
682 --nosend = don't send results
683 --nostatus = don't set status files
684 --force = force a build run (ignore status files)
685 --from-source=/path = use source in path, not from SCM
687 --from-source-clean=/path = same as --from-source, run make distclean first
688 --config=/path/to/file = alternative location for config file
689 --keepall = keep directories if an error occurs
690 --verbose[=n] = verbosity (default 1) 2 or more = huge output.
691 --quiet = suppress normal error message
692 --test = short for --nosend --nostatus --verbose --force
693 --skip-steps=list = skip certain steps
694 --only-steps=list = only do certain steps, not allowed with skip-steps
696 Default branch is HEAD. Usually only the --config option should be necessary.
704 my ($sec,$min,$hour,$mday,$mon,$year,$wday,$yday,$isdst) = localtime(time);
705 return sprintf("[%.2d:%.2d:%.2d] ",$hour, $min, $sec);
711 return $only_steps{$step} if $only_steps;
712 return !$skip_steps{$step} if $skip_steps;
713 return 1; # default is everything is wanted
716 sub register_module_hooks
720 while (my ($hook,$func) = each %$what)
722 $module_hooks{$hook} ||= [];
723 push(@{$module_hooks{$hook}},[$func,$who]);
727 sub process_module_hooks
731 # pass remaining args (if any) to module func
732 foreach my $module (@{$module_hooks{$hook}})
734 my ($func,$module_instance) = @$module;
735 &$func($module_instance, @_);
739 sub check_optional_step
745 return undef unless ref($oconf = $optional_steps->{$step});
746 if ($oconf->{branches})
748 return undef unless grep {$_ eq $branch} @{$oconf->{branches}};
751 my ($sec,$min,$hour,$mday,$mon,$year,$wday,$yday,$isdst) =localtime(time);
752 return undef if (exists $oconf->{min_hour} && $hour < $oconf->{min_hour});
753 return undef if (exists $oconf->{max_hour} && $hour > $oconf->{max_hour});
754 return undef if (exists $oconf->{dow}
755 &&grep {$_ eq $wday} @{$oconf->{dow}});
757 my $last_step = $last_status = find_last("$step") || 0;
759 return undef unless ($forcerun ||
760 time >$last_step + (3600 * $oconf->{min_hours_since}));
761 set_last("$step") unless $nostatus;
766 sub clean_from_source
768 if (-e "$exim/GNUmakefile")
772 my @makeout = `cd $exim && $make distclean 2>&1`;
774 writelog('distclean',\@makeout);
775 print "======== distclean log ===========\n",@makeout if ($verbose > 1);
776 send_result('distclean',$status,\@makeout) if $status;
783 print "Exiting on signal $signame\n";
789 my $lrname = $st_prefix . $logdirname;
791 mkdir "$lrname" || die "can't make $lrname dir: $!";
797 my $loglines = shift;
799 my $lrname = $st_prefix . $logdirname;
800 open($handle,">$lrname/$stage.log") || die $!;
801 print $handle @$loglines;
807 return unless step_wanted('features');
809 src/build-*/exim -C test/confs/0000 -bV `;
811 writelog('features',\@out);
812 print "======== features log ===========\n",@out if ($verbose > 1);
813 send_result('Features',$status,\@out) if $status;
814 $steps_completed .= " Features";
819 my @out = `$make -v 2>&1`;
820 return undef unless ($? == 0 && grep {/GNU Make/} @out);
826 return unless step_wanted('make');
827 print time_str(),"running make ...\n" if $verbose;
828 my $make_args = join(' ',$EximBuild::conf{make_args});
830 my $make_cmd = $make;
831 $make_cmd = "$make -j $make_jobs"
832 if ($make_jobs > 1 && ($branch eq 'HEAD' || $branch ge 'REL9_1'));
833 @makeout = `cd $exim/src && $make_cmd $make_args 2>&1`;
835 writelog('make',\@makeout);
836 print "======== make log ===========\n",@makeout if ($verbose > 1);
837 send_result('Make',$status,\@makeout) if $status;
838 $steps_completed .= " Make";
843 return unless step_wanted('make-doc');
844 print time_str(),"running make doc ...\n" if $verbose;
847 @makeout = `cd $exim/doc/doc-docbook/ && \
848 EXIM_VER="4.82" $make everything 2>&1`;
850 writelog('make-doc',\@makeout);
851 print "======== make doc log ===========\n",@makeout if ($verbose > 1);
852 send_result('Doc',$status,\@makeout) if $status;
853 $steps_completed .= " Doc";
861 # no core = no result
862 my @cores = glob("$pgdata/$core_file_glob");
863 return () unless @cores;
866 system "gdb --version > $devnull 2>&1";
868 return () if $status;
870 my $cmdfile = "./gdbcmd";
872 open($handle, ">$cmdfile");
873 print $handle "bt\n";
878 foreach my $core (@cores)
880 my @onetrace = `gdb -x $cmdfile --batch $bindir/exim $core 2>&1`;
882 "\n\n================== stack trace: $core ==================\n",
891 sub make_install_check
894 return unless step_wanted('install-check');
895 print time_str(),"running make installcheck ($locale)...\n" if $verbose;
900 @checklog = `cd $exim/src/test/regress && $make installcheck 2>&1`;
904 chdir "$exim/src/tools/msvc";
905 @checklog = `perl vcregress.pl installcheck 2>&1`;
910 ("$exim/src/test/regress/regression.diffs","$installdir/logfile");
911 foreach my $logfile(@logfiles)
913 next unless (-e $logfile );
914 push(@checklog,"\n\n================== $logfile ==================\n");
916 open($handle,$logfile);
926 get_stack_trace("$installdir/bin","$installdir/data-$locale");
927 push(@checklog,@trace);
929 writelog("install-check-$locale",\@checklog);
930 print "======== make installcheck log ===========\n",@checklog
932 send_result("InstallCheck-$locale",$status,\@checklog) if $status;
933 $steps_completed .= " InstallCheck-$locale";
936 sub make_isolation_check
939 return unless step_wanted('isolation-check');
944 "cd $exim/src/test/isolation && $make NO_LOCALE=1 installcheck";
945 @makeout = `$cmd 2>&1`;
949 chdir "$exim/src/tools/msvc";
950 @makeout = `perl vcregress.pl isolationcheck 2>&1`;
956 # get the log files and the regression diffs
957 my @logs = glob("$exim/src/test/isolation/log/*.log");
958 push(@logs,"$installdir/logfile");
959 unshift(@logs,"$exim/src/test/isolation/regression.diffs")
960 if (-e "$exim/src/test/isolation/regression.diffs");
961 foreach my $logfile (@logs)
963 push(@makeout,"\n\n================== $logfile ===================\n");
965 open($handle,$logfile);
975 get_stack_trace("$installdir/bin","$installdir/data-$locale");
976 push(@makeout,@trace);
978 writelog('isolation-check',\@makeout);
979 print "======== make isolation check logs ===========\n",@makeout
982 send_result('IsolationCheck',$status,\@makeout) if $status;
983 $steps_completed .= " IsolationCheck";
988 return unless step_wanted('test');
989 print time_str(),"running make test ...\n" if $verbose;
990 my $tests_range = $EximBuild::conf{range_num_tests} || "1 4";
992 @makeout =`(cd $exim/test
993 autoconf && ./configure && $make )2>&1 `;
997 my @tmp = `(WORKDIR=\$PWD
999 ./runtest \$WORKDIR/$exim/src/build-*/exim -CONTINUE $tests_range )2>&1`;
1001 push @makeout, @tmp;
1003 writelog('test',\@makeout);
1004 print "======== make test logs ===========\n",@makeout
1007 send_result('Test',$status,\@makeout) if $status;
1008 $steps_completed .= " Test";
1013 return unless step_wanted('ecpg-check');
1015 my $ecpg_dir = "$exim/src/interfaces/ecpg";
1018 chdir "$exim/src/tools/msvc";
1019 @makeout = `perl vcregress.pl ecpgcheck 2>&1`;
1024 @makeout = `cd $ecpg_dir && $make NO_LOCALE=1 check 2>&1`;
1026 my $status = $? >>8;
1028 # get the log files and the regression diffs
1029 my @logs = glob("$ecpg_dir/test/log/*.log");
1030 unshift(@logs,"$ecpg_dir/test/regression.diffs")
1031 if (-e "$ecpg_dir/test/regression.diffs");
1032 foreach my $logfile (@logs)
1034 push(@makeout,"\n\n================== $logfile ===================\n");
1036 open($handle,$logfile);
1045 my $base = "$ecpg_dir/test/regress/tmp_check";
1047 get_stack_trace("$base/install$installdir/bin", "$base/data");
1048 push(@makeout,@trace);
1050 writelog('ecpg-check',\@makeout);
1051 print "======== make ecpg check logs ===========\n",@makeout
1054 send_result('ECPG-Check',$status,\@makeout) if $status;
1055 $steps_completed .= " ECPG-Check";
1062 foreach my $c_opt (@$config_opts)
1064 if ($c_opt =~ /['"]/)
1066 push(@quoted_opts,$c_opt);
1070 push(@quoted_opts,"'$c_opt'");
1074 my $env = $EximBuild::conf{makefile_set};
1075 my $add = $EximBuild::conf{makefile_add};
1076 my $features = $EximBuild::conf{makefile_regex};
1079 while (my ($key,$val) = each %$env)
1081 $envstr .= "$key='$val'\n";
1083 while (my ($key,$val) = each %$add)
1085 $envstr .= "$key+='$val'\n";
1088 my $conf_path = "src/src/EDITME";
1089 my $local_conf = "src/Local/Makefile";
1090 my @confout = `cd $exim; mkdir -p src/Local 2>&1`;
1091 my @tmp = `cd $exim && cp $conf_path $local_conf 2>&1`;
1092 my $status = $? >> 8;
1093 push @confout, @tmp;
1096 # First, let's display some directory permissions in case
1097 # permissions are causing problems.
1098 my @dir = split('/',`pwd`);
1100 my $count = scalar @dir;
1103 while ($loop < $count)
1106 foreach my $i (0 .. $loop)
1108 $dir .= $dir[$i].'/';
1113 @tmp = `echo "Verify Directory Permissions"
1115 push @confout, @tmp;
1116 # Build the config file from the EDITME template
1117 @tmp = `cd $exim && echo '$envstr' >> $local_conf`;
1118 push @confout, @tmp;
1119 my $exim_user = $EximBuild::conf{master_exim_user} || 'exim';
1120 @tmp = `echo "Hardcoded Exim user info:"; id $exim_user
1121 cd $exim && perl -pi -e 's/^EXIM_USER=.*/EXIM_USER=$exim_user/' $local_conf`;
1122 push @confout, @tmp;
1123 my $me = `whoami`; chomp $me;
1124 @tmp = `echo "Build Farm user info:"; id $me
1125 cd $exim && perl -pi -e 's/^# CONFIGURE_OWNER=\$/CONFIGURE_OWNER=$me/' $local_conf`;
1126 push @confout, @tmp;
1127 @tmp = `cd $exim && perl -pi -e 's/^# TRUSTED_CONFIG_LIST=/TRUSTED_CONFIG_LIST=/' $local_conf`;
1128 push @confout, @tmp;
1129 @tmp = `cd $exim && perl -pi -e 's/^# WHITELIST_D_MACROS=.*/WHITELIST_D_MACROS=DIR:EXIM_PATH:AA:ACL:ACLRCPT:ACL_MAIL:ACL_PREDATA:ACL_RCPT:AFFIX:ALLOW:ARG1:ARG2:AUTHF:AUTHS:AUTH_ID_DOMAIN:BAD:BANNER:BB:BR:BRB:CERT:COM:COMMAND_USER:CONNECTCOND:CONTROL:CREQCIP:CREQMAC:CRL:CSS:D6:DATA:DCF:DDF:DEFAULTDWC:DELAY:DETAILS:DRATELIMIT:DYNAMIC_OPTION:ELI:ERROR_DETAILS:ERT:FAKE:FALLBACK:FILTER:FILTER_PREPEND_HOME:FORBID:FORBID_SMTP_CODE:FUSER:HAI:HAP:HARDLIMIT:HEADER_LINE_MAXSIZE:HEADER_MAXSIZE:HELO_MSG:HL:HOSTS:HOSTS_AVOID_TLS:HOSTS_MAX_TRY:HVH:IFACE:IGNORE_QUOTA:INC:INSERT:IP1:IP2:LAST:LDAPSERVERS:LENCHECK:LIMIT:LIST:LOG_SELECTOR:LS:MAXNM:MESSAGE_LOGS:MSIZE:NOTDAEMON:ONCE:ONLY:OPT:OPTION:ORDER:PAH:PEX:PORT:PTBC:QDG:QOLL:QUOTA:QUOTA_FILECOUNT:QWM:RCPT_MSG:REMEMBER:REQUIRE:RETRY:RETRY1:RETRY2:RETURN:RETURN_ERROR_DETAILS:REWRITE:ROUTE_DATA:RRATELIMIT:RT:S:SELECTOR:SELF:SERVER:SERVERS:SREQCIP:SREQMAC:SRV:STD:STRICT:SUB:SUBMISSION_OPTIONS:TIMEOUTDEFER:TIMES:TRUSTED:TRYCLEAR:UL:USE_SENDER:UTF8:VALUE:WMF:X:Y/' $local_conf`;
1130 push @confout, @tmp;
1131 @tmp = `cd $exim && perl -pi -e 's/^EXIM_MONITOR=(.*)/# EXIM_MONITOR=\$1/' $local_conf`;
1132 push @confout, @tmp;
1133 for my $regex ( @$features )
1136 perl -pi -e '$regex' $local_conf 2>&1
1137 echo "Used regex: $regex" `;
1138 push @confout, @tmp;
1140 # Add the final build file to the display output
1143 echo "Contents of Local/Makefile:"
1144 egrep '^[^#]' $local_conf `;
1145 push @confout, @tmp;
1146 # Does not matter what the Exim version is, as long as it is valid.
1147 my $exim_ver = $EximBuild::conf{exim_test_version} || '4.82';
1149 echo 'EXIM_RELEASE_VERSION="$exim_ver"' > src/src/version.sh
1150 echo 'EXIM_VARIANT_VERSION=""' >> src/src/version.sh
1151 echo 'EXIM_COMPILE_NUMBER="0"' >> src/src/version.sh`;
1154 print "======== configure output ===========\n",@confout
1157 writelog('configure',\@confout);
1161 send_result('Configure',$status,\@confout);
1164 $steps_completed .= " Configure";
1170 my $stname = $st_prefix . "last.$which";
1172 open($handle,$stname) or return undef;
1173 my $time = <$handle>;
1182 my $stname = $st_prefix . "last.$which";
1183 my $st_now = shift || time;
1185 open($handle,">$stname") or die "opening $stname: $!";
1186 print $handle "$st_now\n";
1193 # clean up temp file
1198 my $ts = $now || time;
1199 my $status=shift || 0;
1200 my $log = shift || [];
1201 print "======== log passed to send_result ===========\n",@$log
1205 "Last file mtime in snapshot: ",
1206 scalar(gmtime($current_snap)),
1207 " GMT\n","===================================================\n")
1208 unless ($from_source || !$current_snap);
1210 my $log_data = join("",@$log);
1212 my $changed_this_run = "";
1213 my $changed_since_success = "";
1214 $changed_this_run = join("!",@changed_files)
1216 $changed_since_success = join("!",@changed_since_success)
1217 if ($stage ne 'OK' && @changed_since_success);
1221 $confsum= $saved_config;
1223 elsif ($stage !~ /CVS|Git|SCM/ )
1225 $confsum = get_config_summary();
1229 $confsum = get_script_config_dump();
1232 my $savedata = Data::Dumper->Dump(
1234 $changed_this_run, $changed_since_success, $branch, $status,$stage,
1235 $animal, $ts,$log_data, $confsum, $target, $verbose, $secret
1238 qw(changed_this_run changed_since_success branch status stage
1239 animal ts log_data confsum target verbose secret)
1243 my $lrname = $st_prefix . $logdirname;
1245 # might happen if there is a CVS failure and have never got further
1246 mkdir $lrname unless -d $lrname;
1248 my $txfname = "$lrname/web-txn.data";
1250 open($txdhandle,">$txfname");
1251 print $txdhandle $savedata;
1254 if ($nosend || $stage eq 'CVS' || $stage eq 'CVS-status' )
1256 print "Branch: $branch\n";
1259 print "All stages succeeded\n";
1260 set_last('success.snap',$current_snap) unless $nostatus;
1265 print "Stage $stage failed with status $status\n";
1270 if ($stage !~ /CVS|Git|SCM|Pre-run-port-check/ )
1273 my @logfiles = glob("$lrname/*.log");
1274 my %mtimes = map { $_ => (stat $_)[9] } @logfiles;
1276 map { basename $_ }( sort { $mtimes{$a} <=> $mtimes{$b} } @logfiles );
1277 my $logfiles = join(' ',@logfiles);
1278 $tar_log_cmd =~ s/\*\.log/$logfiles/;
1280 system("$tar_log_cmd 2>&1 ");
1281 chdir($branch_root);
1287 # these would be from an earlier run, since we
1288 # do cleanlogs() after the cvs stage
1289 # so don't send them.
1290 unlink "$lrname/runlogs.tgz";
1295 # this should now only apply to older Msys installs. All others should
1296 # be running with perl >= 5.8 since that's required to build exim
1298 if (!$^V or $^V lt v5.8.0)
1301 unless (-x "$aux_path/run_web_txn.pl")
1303 print "Could not locate $aux_path/run_web_txn.pl\n";
1307 system("$aux_path/run_web_txn.pl $lrname");
1308 $txstatus = $? >> 8;
1312 $txstatus = EximBuild::WebTxn::run_web_txn($lrname) ? 0 : 1;
1318 print "Web txn failed with status: $txstatus\n";
1320 # if the web txn fails, restore the timestamps
1321 # so we try again the next time.
1322 set_last('status',$last_status) unless $nostatus;
1323 set_last('run.snap',$last_run_snap) unless $nostatus;
1327 unless ($stage eq 'OK' || $quiet)
1329 print "BuildFarm member $animal failed on $branch stage $stage\n";
1332 # print "Success!\n",$response->content
1333 # if $print_success;
1335 set_last('success.snap',$current_snap) if ($stage eq 'OK' && !$nostatus);
1340 sub get_config_summary
1344 # unless ($using_msvc)
1346 # open($handle,"$exim/config.log") || return undef;
1347 # my $start = undef;
1350 # if (!$start && /created by PostgreSQL configure/)
1353 # s/It was/This file was/;
1355 # next unless $start;
1356 # last if /Core tests/;
1358 # next if /= <?unknown>?/;
1360 # # split up long configure line
1361 # if (m!\$.*configure.*--with! && length > 70)
1363 # my $pos = index($_," ",70);
1364 # substr($_,$pos+1,0,"\\\n ") if ($pos > 0);
1365 # $pos = index($_," ",140);
1366 # substr($_,$pos+1,0,"\\\n ") if ($pos > 0);
1367 # $pos = index($_," ",210);
1368 # substr($_,$pos+1,0,"\\\n ") if ($pos > 0);
1374 # "\n========================================================\n";
1376 $config .= get_script_config_dump();
1380 sub get_script_config_dump
1383 %EximBuild::conf, # shallow copy
1384 script_version => $VERSION,
1385 invocation_args => \@invocation_args,
1386 steps_completed => $steps_completed,
1387 orig_env => $orig_env,
1389 delete $conf->{secret};
1390 $Data::Dumper::Sortkeys = 1;
1391 return Data::Dumper->Dump([$conf],['Script_Config']);
1396 my $wait_time = shift;
1397 my $who_to_kill = getpgrp(0);
1400 print "waiting $wait_time secs to time out process $who_to_kill\n"
1402 foreach my $sig (qw(INT TERM HUP QUIT))
1404 $SIG{$sig}='DEFAULT';
1407 $SIG{TERM} = 'IGNORE'; # so we don't kill ourself, we're exiting anyway
1408 # kill the whole process group
1409 unless (kill $sig,$who_to_kill)
1411 print "scm timeout kill failed\n";
1417 my $coderef = shift;
1419 if (defined($pid) && $pid == 0)