Skip to content

feat: zero relocation string containers #8

feat: zero relocation string containers

feat: zero relocation string containers #8

Workflow file for this run

name: Linux
on:
push:
pull_request:
jobs:
build_frozen:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
compiler:
- g++-9
- g++-10
- g++-11
- g++-12
- clang++-12
- clang++-13
- clang++-14
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
env:
CXX: ${{matrix.compiler}}
CXXFLAGS: -std=c++${{matrix.cxxstandard}} -fdiagnostics-color=always
run: cmake -DCMAKE_BUILD_TYPE=DEBUG "-Dfrozen.coverage=ON" -DCMAKE_VERBOSE_MAKEFILE=ON -GNinja -B build -S .
- name: Build
run: cmake --build build
- name: Test
run: cmake --build build --target test