bump #21
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: linux | |
on: | |
push: | |
branches: | |
- '*' | |
tags-ignore: | |
- '*' | |
pull_request: | |
jobs: | |
perl: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
cip_tag: | |
- "5.39" | |
- "5.38" | |
- "5.36" | |
- "5.34" | |
- "5.32" | |
- "5.30" | |
- "5.28" | |
- "5.26" | |
- "5.24" | |
- "5.22" | |
- "5.20" | |
- "5.18" | |
- "5.16" | |
- "5.14" | |
- "5.12" | |
- "5.10" | |
- "5.8" | |
env: | |
CIP_TAG: ${{ matrix.cip_tag }} | |
CIP_ENV: TMPDIR=/home/cip/tmp FFI_PLATYPUS_LANG_GO_TEST_EXAMPLES=1 | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Bootstrap CIP | |
run: | | |
curl -L https://raw.githubusercontent.com/uperl/cip/main/bin/github-bootstrap | bash | |
- name: Cache-Key | |
id: cache-key | |
run: | | |
echo -n '::set-output name=key::' | |
cip cache-key | |
- name: Cache CPAN modules | |
uses: actions/cache@v2 | |
with: | |
path: ~/.cip | |
key: ${{ runner.os }}-build-${{ steps.cache-key.outputs.key }} | |
restore-keys: | | |
${{ runner.os }}-build-${{ steps.cache-key.outputs.key }} | |
- name: Start-Container | |
run: | | |
cip start | |
- name: Diagnostics | |
run: | | |
cip diag | |
- name: Install-Dependencies | |
run: | | |
cip install | |
- name: Build + Test | |
run: | | |
cip script | |
- name: CPAN log | |
if: ${{ failure() }} | |
run: | | |
cip exec bash -c 'cat $HOME/.cpanm/latest-build/build.log' |