Skip to content

appveyor: disable activeperl build because of ppm problems #5

appveyor: disable activeperl build because of ppm problems

appveyor: disable activeperl build because of ppm problems #5

Workflow file for this run

name: CI
on:
push:
branches-ignore:
- '*travis*'
- '*appveyor*'
- '*doozer*'
pull_request:
workflow_dispatch:
jobs:
test_on_host:
name: ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
include:
- os: 'ubuntu-20.04'
- os: 'ubuntu-22.04'
- os: 'windows-latest'
steps:
- uses: actions/checkout@v3
- name: "Build and test (ubuntu)"
run: |
set -e
perl Makefile.PL
HARNESS_TIMER=1 HARNESS_OPTIONS=j4:c make test
if: "!startsWith(matrix.os,'windows-')"
- name: "Build and test (windows)"
run: |
c:\strawberry\perl\bin\perl Makefile.PL
c:\strawberry\c\bin\gmake
c:\strawberry\c\bin\gmake test
if: "startsWith(matrix.os, 'windows-')"
test_in_container:
name: "Test with perl ${{ matrix.perlimage }}"
runs-on: ubuntu-latest
container: perl:${{ matrix.perlimage }}
strategy:
matrix:
include:
- perlimage: 5.8.9-threaded-stretch
- perlimage: 5.10.1-buster
- perlimage: 5.12.5-stretch
- perlimage: 5.14.4-stretch
- perlimage: 5.16.3-buster
- perlimage: 5.18.4-buster
- perlimage: 5.22.4-stretch
- perlimage: 5.36.0-slim-bullseye
steps:
- uses: actions/checkout@v3
- name: Build and test
run: |
set -e
perl Makefile.PL
HARNESS_TIMER=1 HARNESS_OPTIONS=j4:c make test