Skip to content

Commit

Permalink
Fix Linux tests crash due to too old compiler
Browse files Browse the repository at this point in the history
  • Loading branch information
SSoelvsten committed Jan 23, 2025
1 parent 97a7a20 commit a26ed9e
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions .github/workflows/linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,15 +36,16 @@ jobs:
os: [ubuntu-latest]
cc:
# GNU Compiler
- { cc: gcc, v: 10, cxx: g++ } # oldest possible
- { cc: gcc, v: 11, cxx: g++ } # default
- { cc: gcc, v: 12, cxx: g++ } # newest
- { cc: gcc, v: 11, cxx: g++ } # default (?)
- { cc: gcc, v: 12, cxx: g++ }
- { cc: gcc, v: 13, cxx: g++ } # ??

# Clang Compiler
# - { cc: clang, v: 11, cxx: clang++ } # oldest possible
- { cc: clang, v: 12, cxx: clang++ } # oldest supported
- { cc: clang, v: 13, cxx: clang++ }
- { cc: clang, v: 14, cxx: clang++ } # default
- { cc: clang, v: 15, cxx: clang++ } # newst possible
- { cc: clang, v: 15, cxx: clang++ }
- { cc: clang, v: 16, cxx: clang++ } # ??

env:
cc: ${{matrix.cc.cc}}-${{matrix.cc.v}}
Expand Down

0 comments on commit a26ed9e

Please sign in to comment.