mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
- run the tinderbox script in verbose mode
- use /\bStop\b/ instead of /^\*\*\* Error/ to identify errors
This commit is contained in:
parent
5ce623b8e0
commit
72d8c7ffcd
1 changed files with 2 additions and 2 deletions
|
|
@ -33,7 +33,7 @@ use strict;
|
|||
|
||||
my @BRANCHES = qw(CURRENT);
|
||||
my @TARGETS = qw(world generic lint);
|
||||
my @OPTIONS = qw(--update);
|
||||
my @OPTIONS = qw(--update --verbose);
|
||||
my %ARCHES = (
|
||||
'alpha' => [ 'alpha' ],
|
||||
'i386' => [ 'i386', 'pc98' ],
|
||||
|
|
@ -96,7 +96,7 @@ sub tinderbox($$$$) {
|
|||
$messages .= $_;
|
||||
@accumulate = ();
|
||||
$error = 0;
|
||||
} elsif (m/^\*\*\* Error code/ && !m/ignored/) {
|
||||
} elsif (m/\bStop\b/) {
|
||||
push(@accumulate, $_);
|
||||
$error = 1;
|
||||
} else {
|
||||
|
|
|
|||
Loading…
Reference in a new issue