Skip to content

bumped catch version #3

bumped catch version

bumped catch version #3

Workflow file for this run

name: Compilation
on:
push:
branches:
- ci-compiling
pull_request:
branches:
- ci-compiling
jobs:
# test only compilation succeeds (no execution)
build-test:
name: Testing compilation
runs-on: ${{ matrix.os }}
strategy:
# continue other jobs if any fail
fail-fast: false
# perform job for all combinations of...
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
precision: [1, 2, 4]
# assign each OS a bespoke compilter
include:
- os: ubuntu-latest
compiler: g++
- os: macos-latest
compiler: clang
- os: windows-latest
compiler: cl
steps:
- name: Get QuEST
uses: actions/checkout@v4
- name: Make build directory
run: mkdir build_dir
- name: Run CMake
working-directory: build_dir
run: >
cmake ..
-DENABLE_MULTITHREADING=OFF
-DFLOAT_PRECISION=${{ matrix.precision }}
-DCMAKE_CXX_COMPILER=${{ matrix.compiler }}
- name: Run Make
working-directory: build_dir
run: make