feat: zero relocation string containers #8
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |