Skip to content

Commit

Permalink
Update compiler versions for Linux and Mac CI
Browse files Browse the repository at this point in the history
  • Loading branch information
SSoelvsten committed Mar 10, 2023
1 parent d7f7d75 commit 25fbf4b
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 9 deletions.
11 changes: 6 additions & 5 deletions .github/workflows/test_linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,13 +37,14 @@ jobs:
build_type: [Release, Debug]
cc:
# GNU Compiler
- { cc: gcc, v: 7, cxx: g++ } # oldest possible
- { cc: gcc, v: 9, cxx: g++ } # default
- { cc: gcc, v: 10, cxx: g++ } # newest
- { cc: gcc, v: 10, cxx: g++ } # oldest possible
- { cc: gcc, v: 11, cxx: g++ } # default
- { cc: gcc, v: 12, cxx: g++ } # newest

# Clang Compiler
- { cc: clang, v: 7, cxx: clang++ } # oldest possible
- { cc: clang, v: 11, cxx: clang++ } # newst possible
- { cc: clang, v: 11, cxx: clang++ } # oldest possible
- { cc: clang, v: 14, cxx: clang++ } # default
- { cc: clang, v: 15, cxx: clang++ } # newst possible

env:
cc: ${{matrix.cc.cc}}-${{matrix.cc.v}}
Expand Down
9 changes: 5 additions & 4 deletions .github/workflows/test_mac.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,12 +39,13 @@ jobs:
# GNU Compiler
- { cc: gcc, v: 7, cxx: g++, xcode: latest }
- { cc: gcc, v: 10, cxx: g++, xcode: latest }
- { cc: gcc, v: 12, cxx: g++, xcode: latest }

# Clang Compiler
- { cc: clang, cxx: clang++, xcode: 11.7 } # oldest
- { cc: clang, cxx: clang++, xcode: 12.4 }
- { cc: clang, cxx: clang++, xcode: 13.1 }
- { cc: clang, cxx: clang++, xcode: 13.2 } # newest
- { cc: clang, cxx: clang++, xcode: 13.1 } # oldest
- { cc: clang, cxx: clang++, xcode: 13.4 }
- { cc: clang, cxx: clang++, xcode: 14.0 }
- { cc: clang, cxx: clang++, xcode: 14.2 } # newest

steps:
# Git repo set up
Expand Down

0 comments on commit 25fbf4b

Please sign in to comment.