This content originally appeared on DEV Community and was authored by Yuki Kimoto
I'm creating SPVM. SPVM is a Perl module I'm creating now.
I want to do tests of SPVM on Linux 32bit. I search for the way. I search github actions used in Perl itself.
Linux 32bit Github Action
I customized it. The created github action yml is linux-32bit.yml
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 Makefile.PL
run: perl Makefile.PL
- name: make
run: make
- name: make disttest
run: make disttest
Short Descriptions
the Docker Container Image
Use the docker container image "i386/ubuntu:latest"
container:
image: i386/ubuntu:latest
apt
Install the Perl header, core modules, building tools.
run: |
apt update
apt install -y libperl-dev build-essential
This content originally appeared on DEV Community and was authored by Yuki Kimoto
Yuki Kimoto | Sciencx (2022-01-07T22:40:47+00:00) Perl module tests on Linux 32bit on Github Action. Retrieved from https://www.scien.cx/2022/01/07/perl-module-tests-on-linux-32bit-on-github-action/
Please log in to upload a file.
There are no updates yet.
Click the Upload button above to add an update.