Skip to content

Commit

Permalink
ci: Use alpine v3.20 besides 3.19 for Python 3.12
Browse files Browse the repository at this point in the history
To reduce the number of workflows, only run some combinations.
  • Loading branch information
taminob committed Jul 2, 2024
1 parent 5eb33da commit 7c8b051
Showing 1 changed file with 14 additions and 3 deletions.
17 changes: 14 additions & 3 deletions .github/workflows/cpp-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,13 +29,24 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
cpp17_compatibility: [ "ON", "OFF" ]
cpp_compiler: [ "g++", "clang++" ]
include:
- cpp_compiler: "g++"
alpine_version: "v3.20"
cpp17_compatibility: "ON"
- cpp_compiler: "clang++"
alpine_version: "v3.19"
cpp17_compatibility: "OFF"
- cpp_compiler: "g++"
alpine_version: "v3.19"
cpp17_compatibility: "OFF"
- cpp_compiler: "clang++"
alpine_version: "v3.20"
cpp17_compatibility: "ON"
steps:
- uses: actions/checkout@v3
- uses: jirutka/setup-alpine@v1
with:
branch: v3.19
branch: ${{ matrix.alpine_version }}
- name: Install dependencies
run: |
apk update
Expand Down

0 comments on commit 7c8b051

Please sign in to comment.