Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 5 additions & 6 deletions .github/workflows/ubuntu.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Ubuntu 24.04 Sanitized CI (GCC 14)
name: Ubuntu 24.04 CI (GCC 14 & Clang 18)

on: [push, pull_request]

Expand All @@ -8,12 +8,11 @@ jobs:
strategy:
matrix:
include:
- {shared: ON}
- {shared: OFF}
- {cc: gcc-14, cxx: g++-14}
- {cc: clang-18, cxx: clang++-18}
steps:
- uses: actions/checkout@v3
- name: Use cmake
- name: Build with ${{matrix.cxx}}
run: |
mkdir build &&
cmake -B build -DCMAKE_C_COMPILER=gcc-14 -DCMAKE_CXX_COMPILER=g++-14 &&
cmake -B build -DCMAKE_C_COMPILER=${{matrix.cc}} -DCMAKE_CXX_COMPILER=${{matrix.cxx}}
cmake --build build
8 changes: 1 addition & 7 deletions .github/workflows/vs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,18 +6,12 @@ jobs:
ci:
name: windows
runs-on: windows-latest
strategy:
fail-fast: false
matrix:
include:
- {gen: Visual Studio 17 2025, arch: x64, shared: ON}
- {gen: Visual Studio 17 2025, arch: x64, shared: OFF}
steps:
- name: checkout
uses: actions/checkout@v3
- name: Configure
run: |
cmake -G "${{matrix.gen}}" -A ${{matrix.arch}} -B build
cmake -G "Visual Studio 17 2025" -A x64 -B build
- name: Build Debug
run: cmake --build build --config Debug --verbose
- name: Build Release
Expand Down