Skip to content

explicitly point to compiler (for windows) #6

explicitly point to compiler (for windows)

explicitly point to compiler (for windows) #6

Workflow file for this run

name: Build and Test
on:
push:
branches:
- main
- develop
pull_request:
branches:
- main
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
compiler: [native, llvm]
os: [ubuntu-latest, macos-latest, windows-latest]
exclude:
- os: macos-latest
compiler: native
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Install CMake
uses: lukka/get-cmake@latest
- name: Install LLVM and Clang
uses: KyleMayes/install-llvm-action@v1
with:
version: "15"
env: ${{ matrix.compiler == 'llvm' }}
if: ${{ matrix.compiler == 'llvm' }}
- name: Configure
run: |
if [ "${{ matrix.compiler}}" != "native" ]; then
cmake -B build -DBUILD_TESTS=YES -DCMAKE_C_COMPILER=${{ env.CC }} -DCMAKE_CXX_COMPILER=${{ env.CXX }}
else
cmake -B build -DBUILD_TESTS=YES
fi
- name: Build
run: cmake --build build --config Release
- name: Test
run: ctest --test-dir build --build-config Release