Skip to content

Guard against direct include of internal headers from outside #14

Guard against direct include of internal headers from outside

Guard against direct include of internal headers from outside #14

Workflow file for this run

# This workflow is for CMake-based build/test running on multiple platforms.
name: cmake build
on: [push, pull_request]
jobs:
build:
name: ${{ matrix.target_arch }} ${{ matrix.os }} (${{ matrix.c_compiler }})
runs-on: ${{ matrix.os }}
strategy:
# Deliver the feedback for all matrix combinations.
fail-fast: false
matrix:
target_arch: [ amd64 ]
os: [ macos-latest, ubuntu-latest, windows-latest ]
c_compiler: [ cl, clang, gcc ]
build_type: [ Release ]
exclude:
- os: macos-latest
c_compiler: cl
- os: macos-latest
c_compiler: gcc
- os: ubuntu-latest
c_compiler: cl
include:
- os: windows-latest
c_compiler: clang
cmake_generator_opt: '-G "Unix Makefiles"'
- os: windows-latest
c_compiler: gcc
cmake_generator_opt: '-G "Unix Makefiles"'
steps:
- uses: actions/checkout@v4
- name: Set reusable strings
# Turn repeated input strings into step outputs.
id: strings
shell: bash
run: |
echo "build-output-dir=${{ github.workspace }}/build" >> "$GITHUB_OUTPUT"
- name: Configure CMake
# Configure CMake in a 'build' subdirectory.
run: >
cmake -B ${{ steps.strings.outputs.build-output-dir }}
${{ matrix.cmake_generator_opt }}
-DCMAKE_C_COMPILER=${{ matrix.c_compiler }}
-DCMAKE_BUILD_TYPE=${{ matrix.build_type }}
-Dbuild_tests=ON
-Denable_werror=ON
-Werror=dev
-S ${{ github.workspace }}
- name: Build
# Build the code with the given configuration.
run: >
cmake --build ${{ steps.strings.outputs.build-output-dir }}
--config ${{ matrix.build_type }} --verbose --parallel
- name: Test
working-directory: ${{ steps.strings.outputs.build-output-dir }}
# Execute tests defined by the CMake configuration.
run: ctest --build-config ${{ matrix.build_type }} --verbose --parallel 4