Full blown reflection for aggregate structs in clang #2
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: clang_linux | |
on: | |
push: | |
branches: | |
- main | |
- feature/* | |
paths-ignore: | |
- '**.md' | |
pull_request: | |
branches: [main] | |
paths-ignore: | |
- '**.md' | |
workflow_dispatch: | |
env: | |
BUILD_TYPE: Debug | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Install Clang 15 | |
run: | | |
sudo apt-get update | |
sudo apt-get install -y clang-15 | |
- name: Configure CMake with Clang 15 | |
run: cmake -B ${{github.workspace}}/build -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}} -DCMAKE_C_COMPILER=clang-15 -DCMAKE_CXX_COMPILER=clang++-15 | |
- name: Build | |
run: cmake --build build --config ${{env.BUILD_TYPE}} -j 2 | |
- name: Test | |
working-directory: build | |
run: ctest -C ${{env.BUILD_TYPE}} -j 2 --output-on-failure |