Skip to content

Commit

Permalink
add macos-11+12 in github workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
eserte committed Jan 6, 2024
1 parent d058278 commit 71aa03f
Showing 1 changed file with 15 additions and 13 deletions.
28 changes: 15 additions & 13 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,22 +29,24 @@ jobs:
path: "*.tar.gz"

test:
name: Test with perl ${{ matrix.perlimage }}
runs-on: ubuntu-latest
container: perl:${{ matrix.perlimage }}
name: Test on ${{ matrix.container || matrix.runs-on }}
runs-on: ${{ matrix.runs-on }}
container: ${{ matrix.container }}
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.30.3-threaded-buster
- perlimage: 5.36.0-slim-bullseye
- perlimage: 5.38.0-slim-bookworm
- { runs-on: ubuntu-latest, container: "perl:5.8.9-threaded-stretch" }
- { runs-on: ubuntu-latest, container: "perl:5.10.1-buster" }
- { runs-on: ubuntu-latest, container: "perl:5.12.5-stretch" }
- { runs-on: ubuntu-latest, container: "perl:5.14.4-stretch" }
- { runs-on: ubuntu-latest, container: "perl:5.16.3-buster" }
- { runs-on: ubuntu-latest, container: "perl:5.18.4-buster" }
- { runs-on: ubuntu-latest, container: "perl:5.22.4-stretch" }
- { runs-on: ubuntu-latest, container: "perl:5.30.3-threaded-buster" }
- { runs-on: ubuntu-latest, container: "perl:5.36.0-slim-bullseye" }
- { runs-on: ubuntu-latest, container: "perl:5.38.0-slim-bookworm" }
- { runs-on: macos-11 }
- { runs-on: macos-12 }
needs: create-dist
steps:
- uses: actions/download-artifact@v3
Expand Down

0 comments on commit 71aa03f

Please sign in to comment.