aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--NEWS1
-rwxr-xr-xiurt2
-rwxr-xr-xulri2
3 files changed, 4 insertions, 1 deletions
diff --git a/NEWS b/NEWS
index e1f03a9..7363a29 100644
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,4 @@
+0.9.1
- cancel_build: add an utility to cancel a build in the queue
0.9.0
diff --git a/iurt b/iurt
index 1e3270c..7ad4722 100755
--- a/iurt
+++ b/iurt
@@ -324,7 +324,7 @@ plog_init($program_name, $run{logfd} || $LOG, 7, 1); # For parsing command line
# Display version information
#
-my $version = '0.9.0';
+my $version = '0.9.1';
plog("MSG", "This is iurt version $version");
my $todo = parseCommandLine($program_name, \@ARGV, \@params);
diff --git a/ulri b/ulri
index fe5ad84..63c6586 100755
--- a/ulri
+++ b/ulri
@@ -163,6 +163,7 @@ foreach my $prefix (keys %pkg_tree) {
# Everything is fine, build is continuing!
# Kill it if that package had failed on a mandatory arch
if (check_if_mandatory_arch_failed($media, $ent, $config)) {
+ plog('INFO', "A mandatory arch had failed, killing the build on $host/$arch");
ssh($remote, "kill -TERM $pid");
$pkg_tree{$prefix}{media}{$media}{cancelled_arch}{$arch} = 1;
create_file("$done_dir/${prefix}_$arch.cancelled", "$bot $host");
@@ -250,6 +251,7 @@ foreach my $prefix (keys %pkg_tree) {
if (check_if_mandatory_arch_failed($media, $ent, $config)) {
# Discard this arch as another mandatory one failed
+ plog('INFO', "A mandatory arch had failed, discarding the successful build from $host/$arch");
cleanup_failed_build($todo_dir, $done_dir, $fail_dir, $prefix, $ent, $media, $arch, $config);
ssh($remote, "rm -rf $prefix_dir");
} else {