Skip to content

automatic migration: bump-2024 #39

automatic migration: bump-2024

automatic migration: bump-2024 #39

Workflow file for this run

name: macos
on:
push:
branches:
- '*'
tags-ignore:
- '*'
pull_request:
env:
PERL5LIB: /Users/runner/perl5/lib/perl5
PERL_LOCAL_LIB_ROOT: /Users/runner/perl5
PERL_MB_OPT: --install_base /Users/runner/perl5
PERL_MM_OPT: INSTALL_BASE=/Users/runner/perl5
jobs:
perl:
runs-on: macOS-latest
strategy:
fail-fast: false
matrix:
alien:
- install_type: share
- install_type: system
packages: libffi
env:
ALIEN_INSTALL_TYPE: ${{ matrix.alien.install_type }}
steps:
- uses: actions/checkout@v2
- name: Set up Perl
run: |
brew install perl ${{ matrix.alien.packages }} libffi libarchive
curl https://cpanmin.us | perl - App::cpanminus -n
echo "/Users/runner/perl5/bin" >> $GITHUB_PATH
- name: perl -V
run: perl -V
- name: Prepare for cache
run: |
perl -V > perlversion.txt
ls -l perlversion.txt
- name: Cache CPAN modules
uses: actions/cache@v1
with:
path: ~/perl5
key: ${{ runner.os }}-build-${{ matrix.alien.install_type }}-${{ hashFiles('perlversion.txt') }}
restore-keys: |
${{ runner.os }}-build-${{ matrix.alien.install_type }}-${{ hashFiles('perlversion.txt') }}
- name: Install Static Dependencies
run: |
cpanm -n Dist::Zilla
cpanm -n Alien::Build::Plugin::Download::GitHub
dzil authordeps --missing | env ALIEN_INSTALL_TYPE=default cpanm -n
dzil listdeps --missing | env ALIEN_INSTALL_TYPE=default cpanm -n
- name: Install Dynamic Dependencies
run: dzil run --no-build 'cpanm --installdeps .'
- name: Run Tests
run: dzil test -v
- name: CPAN log
if: ${{ failure() }}
run: |
cat ~/.cpanm/latest-build/build.log