Skip to content

message() export doesn't work with this custom inheritance, - fix #1490

message() export doesn't work with this custom inheritance, - fix

message() export doesn't work with this custom inheritance, - fix #1490

Workflow file for this run

name: CI Makefile
on:
push:
branches: '*'
pull_request:
branches: '*'
jobs:
ubuntu:
strategy:
fail-fast: false
matrix:
perl-version:
- 'latest'
runs-on: ubuntu-latest
container:
image: perldocker/perl-tester:${{ matrix.perl-version }} # https://hub.docker.com/r/perldocker/perl-tester
name: Linux ${{ matrix.perl-version }}
steps:
- uses: actions/checkout@v2
- name: Prepare
run: |
uname -a
sed -i 's|http://deb.debian.org/debian|http://archive.debian.org/debian|g' /etc/apt/sources.list
sed -i 's|security.debian.org|archive.debian.org|g' /etc/apt/sources.list
echo 'Acquire::Check-Valid-Until "false";' > /etc/apt/apt.conf.d/99no-check-valid-until
apt-get update
apt-get install -y libgtk2.0-dev libgif-dev libjpeg-dev libtiff-dev libxpm-dev libwebp-dev libfribidi-dev libharfbuzz-dev libthai-dev xvfb
cpanm --notest Test::Pod
- name: Build
run: |
perl Makefile.PL
make
- name: Test
run: |
xvfb-run -a make test
strawberry:
strategy:
fail-fast: false
matrix:
perl-version:
- 'latest'
runs-on: windows-latest
name: Strawberry ${{ matrix.perl-version }}
steps:
- uses: actions/checkout@v2
- name: Set up perl
uses: shogo82148/actions-setup-perl@v1
with:
perl-version: ${{ matrix.perl }}
distribution: strawberry
- name: Prepare
run: |
uname -a
cpanm --notest Test::Pod
- name: Build
run: |
perl Makefile.PL
gmake
- name: Test
run: |
gmake test