Skip to content

Commit

Permalink
Add ci for gcc 13,14 and clang16
Browse files Browse the repository at this point in the history
  • Loading branch information
CJLove committed Dec 14, 2024
1 parent 2e960f1 commit 550961a
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,10 @@ jobs:
- { compiler: gcc, version: 10, build_type: Debug, cppstd: 20, examples: ON }
- { compiler: gcc, version: 11, build_type: Debug, cppstd: 20, examples: OFF }
- { compiler: gcc, version: 12, build_type: Release, cppstd: 20, examples: ON }
# - { compiler: clang, version: 15, build_type: Debug, cppstd: 17, examples: OFF }
# - { compiler: clang, version: 15, build_type: Release, cppstd: 20, examples: ON }
- { compiler: gcc, version: 13, build_type: Release, cppstd: 20, examples: OFF }
- { compiler: gcc, version: 14, build_type: Release, cppstd: 20, examples: ON }
- { compiler: clang, version: 16, build_type: Debug, cppstd: 17, examples: OFF }
- { compiler: clang, version: 16, build_type: Release, cppstd: 20, examples: ON }
container:
image: ${{ matrix.config.compiler == 'clang' && 'teeks99/clang-ubuntu' || matrix.config.compiler }}:${{ matrix.config.version }}
name: "${{ matrix.config.compiler}} ${{ matrix.config.version }} (C++${{ matrix.config.cppstd }}, ${{ matrix.config.build_type }})"
Expand Down

0 comments on commit 550961a

Please sign in to comment.