Skip to content

WIP

WIP #25

Workflow file for this run

name: CI
on: [push]
jobs:
build_frozen:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
compiler:
# - g++-9
- g++-10
- g++-11
- g++-12
- g++-13
# - clang++-12
- clang++-13
- clang++-14
- clang++-15
cmake_args:
- ""
cxxstandard:
- 14
- 17
- 2a
steps:
- name: Checkout
uses: actions/checkout@v2
with:
fetch-depth: 1
- name: Prepare
run: cmake -E make_directory build
- name: Configure
working-directory: build
env:
CXX: ${{matrix.compiler}}
CXXFLAGS: -std=c++${{matrix.cxxstandard}} ${{ matrix.compiler == "clang++-14" && "-stdlib=libc++" }}

Check failure on line 40 in .github/workflows/linux.yml

View workflow run for this annotation

GitHub Actions / CI

Invalid workflow file

The workflow is not valid. .github/workflows/linux.yml (Line: 40, Col: 21): Unexpected symbol: '"clang++-14"'. Located at position 20 within expression: matrix.compiler == "clang++-14" && "-stdlib=libc++"
run: cmake -DCMAKE_BUILD_TYPE=DEBUG "-Dfrozen.coverage=ON" -DCMAKE_VERBOSE_MAKEFILE=ON ..
- name: Build
working-directory: build
run: cmake --build .
- name: Test
working-directory: build
run: cmake --build . --target test