arm versions working

This commit is contained in:
ryan 2022-05-12 15:21:46 -04:00
parent a6b5516455
commit 5ae0746893
5 changed files with 6 additions and 2 deletions

1
.gitignore vendored
View file

@ -1,2 +1,3 @@
perl-*.bz2 perl-*.bz2
downloads downloads
build.*

View file

@ -8,6 +8,6 @@ for build in 5*; do
( cd $build; ( cd $build;
docker build -t $TAG . docker build -t $TAG .
docker push $TAG docker push $TAG
) | ts "$TAG [%H:%M:%S]" > build.$TAG.log || echo " Failed to build $TAG" ) | ts "$TAG [%H:%M:%S]" | tee build.$TAG.log || echo " Failed to build $TAG"
done done

View file

@ -4,3 +4,6 @@ requires 'YAML::XS';
on 'develop' => sub { on 'develop' => sub {
requires 'Perl::Tidy'; requires 'Perl::Tidy';
}; };
requires 'LWP::Simple';
requires 'LWP::Protocol::https';

View file

View file

@ -121,7 +121,7 @@ for my $release (@{$config->{releases}}) {
} }
else { else {
print "Downloading $url\n"; print "Downloading $url\n";
getstore($url, "downloads/$file"); getstore($url, "downloads/$file") or die "failed";
} }
{ {
my $dir = "downloads/perl-$release->{version}"; my $dir = "downloads/perl-$release->{version}";