Skip to content

Commit

Permalink
ci: move clang-15 to ubuntu 22
Browse files Browse the repository at this point in the history
it seems that clang15 std=20 does not go well with the default-installed
libstdc++ on ubuntu 24
  • Loading branch information
ToruNiina committed Feb 14, 2025
1 parent 166e66c commit 197e95d
Showing 1 changed file with 2 additions and 7 deletions.
9 changes: 2 additions & 7 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -74,14 +74,9 @@ jobs:
runs-on: Ubuntu-24.04
strategy:
matrix:
compiler: ['19', '18', '17', '16', '15']
compiler: ['19', '18', '17', '16']
standard: ['11', '14', '17', '20']
precompile: ['ON', 'OFF']
exclude:
- {compiler: '14', standard: '20'} # to avoid using gcc-13 libstdc++
- {compiler: '13', standard: '20'} # with older clang
- {compiler: '12', standard: '20'}
- {compiler: '11', standard: '20'}
steps:
- name: Get number of CPU cores
uses: SimenB/github-actions-cpu-cores@v2
Expand Down Expand Up @@ -109,7 +104,7 @@ jobs:
runs-on: Ubuntu-22.04
strategy:
matrix:
compiler: ['14', '13', '12', '11']
compiler: ['15', '14', '13', '12', '11']
standard: ['11', '14', '17', '20']
precompile: ['ON', 'OFF']
exclude:
Expand Down

0 comments on commit 197e95d

Please # to comment.