FFI::Probe: fix complex float detection #558
Workflow file for this run
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@v2 | |
- name: Set up Perl | |
run: | | |
brew install perl libffi libarchive jq | |
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 | |
brew info --installed --json libffi | jq '.[] | select(.name=="libffi") | .versions' >> perlversion.txt | |
ls -l perlversion.txt | |
- name: Cache CPAN modules | |
uses: actions/cache@v1 | |
with: | |
path: ~/perl5 | |
key: ${{ runner.os }}-build-${{ hashFiles('perlversion.txt') }} | |
restore-keys: | | |
${{ runner.os }}-build-${{ hashFiles('perlversion.txt') }} | |
- name: Install Static Dependencies | |
run: | | |
cpanm -n Dist::Zilla | |
dzil authordeps --missing | cpanm -n | |
dzil listdeps --missing | 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 |