Skip to content

Commit

Permalink
Update ci.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
z4kn4fein committed Jul 27, 2024
1 parent 6fd25d2 commit 5691f9d
Showing 1 changed file with 9 additions and 7 deletions.
16 changes: 9 additions & 7 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,20 +31,22 @@ jobs:
matrix:
build: [ Debug, Release ]
platform:
- { os: "ubuntu-22.04", cxx: "g++-11" }
- { os: "ubuntu-22.04", cxx: "g++-12" }
- { os: "ubuntu-24.04", cxx: "g++-13" }
- { os: "ubuntu-24.04", cxx: "g++-14" }
- { os: "ubuntu-22.04", cxx: "clang++-15" }
- { os: "ubuntu-24.04", cxx: "clang++-16" }
- { os: "ubuntu-22.04", cxx: "g++-11", modules: "OFF" }
- { os: "ubuntu-22.04", cxx: "g++-12", modules: "OFF" }
- { os: "ubuntu-24.04", cxx: "g++-13", modules: "OFF" }
- { os: "ubuntu-24.04", cxx: "g++-14", modules: "ON" }
- { os: "ubuntu-22.04", cxx: "clang++-15", modules: "OFF" }
- { os: "ubuntu-24.04", cxx: "clang++-16", modules: "ON" }
name: ${{matrix.platform.os}} ${{matrix.platform.cxx}} ${{matrix.build}}
env:
CXX: ${{matrix.platform.cxx}}
CTEST_OUTPUT_ON_FAILURE: 1
steps:
- uses: actions/checkout@v3
- name: cmake
run: cmake -S . -B build -DCMAKE_BUILD_TYPE=${{matrix.build}}
run: cmake -S . -B build
-DCMAKE_BUILD_TYPE=${{matrix.build}}
-DSEMVER_BUILD_MODULE=${{matrix.platform.modules}}
- name: build
run: cmake --build build --config ${{matrix.build}} --parallel 4
- name: test
Expand Down

0 comments on commit 5691f9d

Please sign in to comment.