overall improvements #7
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build and Test | |
on: | |
merge_group: | |
push: | |
branches: | |
- master | |
pull_request: | |
branches: | |
- master | |
jobs: | |
windows-msvc: | |
runs-on: windows-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install dependencies | |
run: choco install ninja | |
- name: configure | |
run: cmake --preset windows-cl-release | |
- name: build | |
run: cmake --build --preset windows-cl-release | |
- name: test | |
run: ctest --preset windows-cl-release -VV | |
ubuntu24-clang-18: | |
runs-on: ubuntu-24.04 | |
strategy: | |
fail-fast: false | |
matrix: | |
clang_version: [18] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install clang | |
run: | | |
wget https://apt.llvm.org/llvm.sh | |
chmod +x llvm.sh | |
sudo ./llvm.sh ${{ matrix.clang_version }} | |
- name: Install ninja | |
run: sudo apt-get install ninja-build | |
- name: configure | |
run: cmake --preset linux-clang-release | |
- name: build | |
run: cmake --build --preset linux-clang-release | |
- name: test | |
run: ctest --preset linux-clang-release -VV | |
ubuntu24-gcc-14: | |
runs-on: ubuntu-24.04 | |
strategy: | |
fail-fast: false | |
matrix: | |
gcc_version: [14] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install dependencies | |
run: sudo apt-get install ninja-build g++-${{ matrix.gcc_version }} | |
- name: configure | |
run: cmake --preset linux-gcc-release | |
- name: build | |
run: cmake --build --preset linux-gcc-release | |
- name: test | |
run: ctest --preset linux-gcc-release -VV |