Skip to content

explicitly point to compiler (for windows) #11

explicitly point to compiler (for windows)

explicitly point to compiler (for windows) #11

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 17
uses: KyleMayes/install-llvm-action@v1
with:
version: "17"
env: true
if: ${{ matrix.compiler == 'llvm' && matrix.os != 'macos-latest' }}
- name: Install LLVM and Clang 15
uses: KyleMayes/install-llvm-action@v1
with:
version: "15.0.7"
env: true
if: ${{ matrix.compiler == 'llvm' && matrix.os == 'macos-latest' }}
- name: Configure for native compiler
run: cmake -B build -DBUILD_TESTS=YES
if: ${{ matrix.compiler == 'native'}}
- name: Configure for non-native compiler
run: cmake -B build -G Ninja -DBUILD_TESTS=YES -DCMAKE_C_COMPILER="$CC" -DCMAKE_CXX_COMPILER="$CXX"
if: ${{ matrix.compiler != 'native'}}
- name: Build
run: cmake --build build --config Release
- name: Test
run: ctest --test-dir build --build-config Release