arm versions working
This commit is contained in:
parent
a6b5516455
commit
5ae0746893
5 changed files with 6 additions and 2 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -1,2 +1,3 @@
|
||||||
perl-*.bz2
|
perl-*.bz2
|
||||||
downloads
|
downloads
|
||||||
|
build.*
|
||||||
|
|
2
build.sh
2
build.sh
|
@ -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
|
||||||
|
|
||||||
|
|
3
cpanfile
3
cpanfile
|
@ -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';
|
||||||
|
|
|
@ -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}";
|
||||||
|
|
Loading…
Add table
Reference in a new issue