CI mac: verbose Net::SSLeay #66
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Perl | |
run: | | |
brew install perl | |
echo "{/Users/runner/perl5/bin}" >> $GITHUB_PATH | |
mkdir -p ~/bin | |
cd ~/bin | |
curl -L https://cpanmin.us/ -o cpanm | |
chmod +x cpanm | |
echo "{~/bin}" >> $GITHUB_PATH | |
which perl | |
which cpanm | |
- name: perl -V | |
run: perl -V | |
- name: Prepare for cache | |
run: | | |
perl -V > perlversion.txt | |
echo '20241203' >> perlversion.txt | |
ls -l perlversion.txt | |
- name: Cache CPAN modules | |
uses: actions/cache@v4 | |
with: | |
path: ~/perl5 | |
key: ${{ runner.os }}-build-${{ hashFiles('perlversion.txt') }} | |
restore-keys: | | |
${{ runner.os }}-build-${{ hashFiles('perlversion.txt') }} | |
- name: Install Dynamic Dependencies | |
run: | | |
cpanm -v Net::SSLeay | |
cpanm --notest Alien::Build | |
cpanm --notest Alien::Build::MM | |
cpanm --notest Sort::Versions | |
cpanm --notest Alien::Build::Plugin::PkgConfig::PPWrapper | |
cpanm --notest Alien::sqlite | |
- name: Build and then run tests | |
run: | | |
perl Makefile.PL | |
cpanm --installdeps . | |
export DIAG_RPATH=1 | |
MAKEFLAGS=-j4 make test |