mirror of
https://github.com/vishapoberon/compiler.git
synced 2026-04-06 18:02:25 +00:00
Build machine to pick up latest buildall.pl every time.
This commit is contained in:
parent
ec7888859c
commit
c7984ffdac
2 changed files with 12 additions and 10 deletions
|
|
@ -42,6 +42,7 @@ sub logged {
|
|||
}
|
||||
|
||||
|
||||
unlink glob "log/*";
|
||||
|
||||
for my $machine (sort keys %machines) {
|
||||
my ($login, $sudo, $dir) = @{$machines{$machine}};
|
||||
|
|
@ -53,7 +54,7 @@ while ((my $pid = wait) > 0) {print "Child pid $pid completed.\n";}
|
|||
|
||||
|
||||
# # All builds have completed. Now scan the logs for pass/fail and build the passing report.
|
||||
#
|
||||
#
|
||||
# my %status = ();
|
||||
# open(my $logs, "/tmp/buildall.log") // die "Couldn't open combined build log.";
|
||||
# while (<$logs>) {
|
||||
|
|
@ -62,23 +63,23 @@ while ((my $pid = wait) > 0) {print "Child pid $pid completed.\n";}
|
|||
# }
|
||||
# }
|
||||
# close(my $logs);
|
||||
#
|
||||
#
|
||||
#
|
||||
#
|
||||
# sub svgtext {
|
||||
# my ($f, $x, $y, $msg) = @_;
|
||||
# print($f "<text x=\"$x\" y=\"$y\" font-family=\"Verdana\" font-size=\"18\" font-fill=\"black\">";
|
||||
# print($f $msg);
|
||||
# print($f "</text>\n");
|
||||
# }
|
||||
#
|
||||
#
|
||||
#
|
||||
#
|
||||
# open(my $svg, ">passing.svg") // dir "Could not create passing.svg.");
|
||||
# print $svg '<svg width="10cm" height="3cm" viewBox="0 0 1000 300" xmlns="http://www.w3.org/2000/svg" version="1.1">\n';
|
||||
#
|
||||
#
|
||||
# my $i=1;
|
||||
# for my $host (sort keys %status) {
|
||||
# svgtext($svg, 10, $i*20, $host);
|
||||
# $i++;
|
||||
# }
|
||||
#
|
||||
#
|
||||
# print $svg '</svg>\n';
|
||||
|
|
|
|||
|
|
@ -11,7 +11,7 @@ use JSON;
|
|||
|
||||
sub writelog {
|
||||
my ($msg) = @_;
|
||||
|
||||
|
||||
open(LOG, ">>/tmp/postpush.log") or die "Could not create postpush.log";
|
||||
flock(LOG, 2) or die "Could not lock postpush.log";
|
||||
print LOG sprintf("%s %s\n", strftime("%Y/%m/%d %H.%M.%S", localtime), $msg);
|
||||
|
|
@ -40,9 +40,10 @@ if ($child) {
|
|||
} else {
|
||||
# child process
|
||||
close(STDIN); close(STDOUT); close(STDERR);
|
||||
exec 'perl /var/lib/nethserver/ibay/githubhook/buildall.pl >/tmp/buildall.log';
|
||||
system 'wget https://raw.githubusercontent.com/vishaps/voc/v2docs/src/tools/make/buildall.pl';
|
||||
exec 'perl buildall.pl >/tmp/buildall.log';
|
||||
exit;
|
||||
}
|
||||
}
|
||||
|
||||
print header(),
|
||||
start_html("Vishap Oberon github post push web hook."),
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue