Perl module tests on Linux 32bit on Github Action

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 y…


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


Print Share Comment Cite Upload Translate Updates
APA

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/

MLA
" » Perl module tests on Linux 32bit on Github Action." Yuki Kimoto | Sciencx - Friday January 7, 2022, https://www.scien.cx/2022/01/07/perl-module-tests-on-linux-32bit-on-github-action/
HARVARD
Yuki Kimoto | Sciencx Friday January 7, 2022 » Perl module tests on Linux 32bit on Github Action., viewed ,<https://www.scien.cx/2022/01/07/perl-module-tests-on-linux-32bit-on-github-action/>
VANCOUVER
Yuki Kimoto | Sciencx - » Perl module tests on Linux 32bit on Github Action. [Internet]. [Accessed ]. Available from: https://www.scien.cx/2022/01/07/perl-module-tests-on-linux-32bit-on-github-action/
CHICAGO
" » Perl module tests on Linux 32bit on Github Action." Yuki Kimoto | Sciencx - Accessed . https://www.scien.cx/2022/01/07/perl-module-tests-on-linux-32bit-on-github-action/
IEEE
" » Perl module tests on Linux 32bit on Github Action." Yuki Kimoto | Sciencx [Online]. Available: https://www.scien.cx/2022/01/07/perl-module-tests-on-linux-32bit-on-github-action/. [Accessed: ]
rf:citation
» Perl module tests on Linux 32bit on Github Action | Yuki Kimoto | Sciencx | 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.

You must be logged in to translate posts. Please log in or register.