Compare commits

...

2 commits

Author SHA1 Message Date
dd37ac7989
sleep 1 after finishing a build
Some checks failed
continuous-integration/drone/push Build is failing
2019-08-28 17:37:52 +02:00
1e1fcd1d1b
eater/base: Add gnu-tar 2019-08-28 17:37:38 +02:00
2 changed files with 2 additions and 1 deletions

View file

@ -1,2 +1,2 @@
FROM d.xr.to/base:glibc
RUN xbps-remote docker make
RUN xbps-remote docker make tar

1
flavor
View file

@ -44,6 +44,7 @@ sub build {
print 'ERROR: Failed running build for '.$running{$pid}." with exit code ".($? >> 8)."\n";
} else {
print "INFO: Finished build for $running{$pid}\n";
sleep 1; # Make img catch up
push @done, ($curr);
if (defined($graph->{parents}{$curr})) {
for my $dependee (@{$graph->{parents}{$curr}}) {