The version is now 0.990032. #5568
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: linux-ubuntu-latest-32bit | |
on: | |
push: | |
branches: | |
- '*' | |
tags-ignore: | |
- '*' | |
pull_request: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
container: | |
image: i386/ubuntu:latest | |
steps: | |
- name: install the Perl header, core modules, building tools | |
run: | | |
apt update | |
apt install -y libperl-dev build-essential | |
- uses: actions/checkout@v1 | |
- name: Perl version | |
run: perl -V | |
- name: Perl config | |
run: perl -MConfig -MData::Dumper -e 'local $Data::Dumper::Sortkeys = 1;warn Dumper \%Config;' | |
- name: Set PERL5LIB | |
run: echo "PERL5LIB=$HOME/mylib/lib/perl5:$HOME/mylib/lib/perl5/$(perl -MConfig -e 'print $Config{archname}')" >> $GITHUB_ENV | |
- name: Show PERL5LIB | |
run: echo $PERL5LIB | |
- name: Download cpanm | |
run: perl -0777 -Mstrict -Mwarnings -MIO::Socket::INET -e 'my $socket = IO::Socket::INET->new( Proto => qq(tcp), PeerAddr => qq(cpanmin.us), PeerPort => 80,) or die $!;print $socket join qq(\r\n), qq(GET / HTTP/1.1), qq(Connection:close), qq(Host:cpanmin.us), qq(\r\n);my $res = <$socket>;$res =~ m(^HTTP/1\.1 200 OK\r\n) or die $res;$res =~ s/.*?\r\n\r\n//s;open my $out, qq(>), qq(cpanm) or die $!;print $out $res' | |
- name: cpanm installs ExtUtils::MakeMaker | |
run: perl cpanm -v -n -L ~/mylib ExtUtils::MakeMaker | |
- name: cpanm installs dependent modules | |
run: perl cpanm -v -n -L ~/mylib --installdeps . --configure-args="--meta" | |
- name: Show MYMETA.json | |
run: cat MYMETA.json | |
- run: perl Makefile.PL | |
- run: make disttest |