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 cbf9f1a commit a9f2ed0
Showing 1 changed file with 9 additions and 5 deletions.
14 changes: 9 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,16 +3,20 @@ on: [push, pull_request]

jobs:
unix:
runs-on: ${{matrix.os}}
runs-on: ${{matrix.platform.os}}
strategy:
matrix:
build: [Debug, Release]
os: [macos-latest, ubuntu-latest]
compiler: [g++, clang++-15]
platform: [
{ os: macos-latest, ccx: g++ },
{ os: macos-latest, ccx: clang++ },
{ os: ubuntu-latest, ccx: g++ }
{ os: ubuntu-latest, ccx: clang++-15 }
]
std_version: [17, 20]
name: ${{matrix.os}} ${{matrix.compiler}} ${{matrix.build}} std:${{matrix.std_version}}
name: ${{matrix.platform.os}} ${{matrix.platform.ccx}} ${{matrix.build}} std:${{matrix.std_version}}
env:
CXX: ${{ matrix.compiler }}
CXX: ${{ matrix.platform.ccx }}
CTEST_OUTPUT_ON_FAILURE: 1
steps:
- uses: actions/checkout@v3
Expand Down

0 comments on commit a9f2ed0

Please sign in to comment.