Skip to content

Commit

Permalink
CI remove clang-12 bump to checkout v4 and python v5
Browse files Browse the repository at this point in the history
  • Loading branch information
willwray committed Oct 3, 2024
1 parent 71fafe8 commit 18eb0d6
Showing 1 changed file with 16 additions and 7 deletions.
23 changes: 16 additions & 7 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,13 @@ jobs:
runs-on: ubuntu-22.04
strategy:
matrix:
compiler: [ g++-10, g++-12, clang++-12, clang++-14 ]
compiler: [ g++-10, g++-12, clang++-14 ]
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
- uses: actions/checkout@v4
with:
fetch-depth: 0
filter: blob:none
- uses: actions/setup-python@v5
with:
python-version: '3.x'
- run: pip install meson ninja
Expand All @@ -34,8 +37,11 @@ jobs:
macos:
runs-on: macos-12
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
- uses: actions/checkout@v4
with:
fetch-depth: 0
filter: blob:none
- uses: actions/setup-python@v5
with:
python-version: '3.x'
- run: pip install meson
Expand All @@ -51,8 +57,11 @@ jobs:
windows:
runs-on: windows-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
- uses: actions/checkout@v4
with:
fetch-depth: 0
filter: blob:none
- uses: actions/setup-python@v5
with:
python-version: '3.x'
- run: pip install meson ninja
Expand Down

0 comments on commit 18eb0d6

Please sign in to comment.