diff options
author | Pascal Terjan <pterjan@gmail.com> | 2016-05-21 18:48:02 +0100 |
---|---|---|
committer | Pascal Terjan <pterjan@gmail.com> | 2016-05-21 18:48:02 +0100 |
commit | 21e953932a1380b2746b2707ea9faef3cd1a8a2e (patch) | |
tree | b4defb7d1e7d707aae541534f302762a741164d4 /ulri | |
parent | 998ae0fe95d34ed1040ab963023627ae9ee8e380 (diff) | |
download | iurt-21e953932a1380b2746b2707ea9faef3cd1a8a2e.tar iurt-21e953932a1380b2746b2707ea9faef3cd1a8a2e.tar.gz iurt-21e953932a1380b2746b2707ea9faef3cd1a8a2e.tar.bz2 iurt-21e953932a1380b2746b2707ea9faef3cd1a8a2e.tar.xz iurt-21e953932a1380b2746b2707ea9faef3cd1a8a2e.zip |
Do not retry when a build succeeds while it is already being retried
Diffstat (limited to 'ulri')
-rwxr-xr-x | ulri | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -383,6 +383,8 @@ foreach my $prefix (keys %pkg_tree) { next bot if $later; + next bot if $success && !$fail; + if (!$ended && !$fail) { plog('FAIL', "$bot timed out on $host/$arch ($seconds sec) or " . "it's dead (status $proc_state), removing lock"); @@ -390,8 +392,6 @@ foreach my $prefix (keys %pkg_tree) { next bot; } - next bot if $success && !$fail; - if (!$status) { plog('ERROR', "build bot died on $host, reschedule compilation"); next bot; |