Skip to content

Commit

Permalink
try to build in a 32-bit container
Browse files Browse the repository at this point in the history
  • Loading branch information
DrHyde committed Jul 15, 2022
1 parent 25fef3b commit e3a44ba
Showing 1 changed file with 33 additions and 0 deletions.
33 changes: 33 additions & 0 deletions .github/workflows/linux-32.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
name: Linux (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 -V
run: perl -V
- name: perl %Config
run: perl -MConfig -MData::Dumper -e 'local $Data::Dumper::Sortkeys = 1;warn Dumper \%Config;'
- name: run tests
env:
PERL_USE_UNSAFE_INC: 0
run: |
perl -v
cpan ExtUtils::MakeMaker Test::Pod Test::Pod::Coverage App::cpanminus
cpanm --installdeps .
perl Makefile.PL
make test TEST_VERBOSE=1

0 comments on commit e3a44ba

Please sign in to comment.