Disable the count restriction here so that we actually build everything
Some checks failed
ci/woodpecker/push/generate-perl Pipeline failed
ci/woodpecker/push/build-perls unknown status
ci/woodpecker/push/base-os Pipeline failed

This commit is contained in:
Automation Pipeline 2023-10-09 14:29:56 -04:00
parent ac8171f58e
commit 6e517b2fc5

View file

@ -176,13 +176,13 @@ $builder->start();
my %calls;
my $count = 0;
#my $count = 0;
ALL: for my $version (@versions) {
for my $option (@options) {
for my $base (@bases) {
print "---> $count\n";
last ALL if $count++ == 10;
# print "---> $count\n";
# last ALL if $count++ == 10;
my $rend = "$version-$option-$base";
my $future = $builder->call(args => [$version, $option, $base])->on_ready(sub {