Skip to content

Commit

Permalink
Update ci.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
z4kn4fein committed Dec 13, 2023
1 parent 7b2e9ef commit c76f76a
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,12 @@ jobs:
strategy:
matrix:
os: [ macos-latest ]
build: [Debug, Release]
compiler: [g++, clang++]
std_version: [17, 20]
build: [ Debug, Release ]
compiler: [ gcc-11, gcc-12, gcc-13, clang++ ]
std_version: [ 17, 20 ]
name: ${{matrix.os}} ${{matrix.compiler}} ${{matrix.build}} std:${{matrix.std_version}}
env:
CXX: ${{ matrix.compiler }}
CXX: ${{matrix.compiler}}
CTEST_OUTPUT_ON_FAILURE: 1
steps:
- uses: actions/checkout@v3
Expand All @@ -30,11 +30,11 @@ jobs:
matrix:
os: [ ubuntu-latest ]
build: [ Debug, Release ]
compiler: [ g++, clang++-15 ]
compiler: [ g++-11, g++-12, g++-13, clang++-15 ]
std_version: [ 17, 20 ]
name: ${{matrix.os}} ${{matrix.compiler}} ${{matrix.build}} std:${{matrix.std_version}}
env:
CXX: ${{ matrix.compiler }}
CXX: ${{matrix.compiler}}
CTEST_OUTPUT_ON_FAILURE: 1
steps:
- uses: actions/checkout@v3
Expand All @@ -53,7 +53,7 @@ jobs:
build: [ Debug, Release ]
os: [ windows-2019, windows-latest ]
arch: [ Win32, x64 ]
std_version: [17, 20]
std_version: [ 17, 20 ]
name: ${{matrix.os}} ${{matrix.arch}} ${{matrix.build}} std:${{matrix.std_version}}
env:
CTEST_OUTPUT_ON_FAILURE: 1
Expand Down

0 comments on commit c76f76a

Please sign in to comment.