From 399d1d004fc8b46c2bff937347b0b7dfd09d0066 Mon Sep 17 00:00:00 2001 From: Tomasz Leman Date: Fri, 29 Mar 2024 18:09:37 +0100 Subject: [PATCH] ci: Add workflow for c++17 This commit adds a workflow to check if the code compiles with the C++17 standard. The setup is based on an existing workflow for C++11. Signed-off-by: Tomasz Leman --- .github/workflows/ubuntu_22_04-gcc-c++17.yml | 29 ++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 .github/workflows/ubuntu_22_04-gcc-c++17.yml diff --git a/.github/workflows/ubuntu_22_04-gcc-c++17.yml b/.github/workflows/ubuntu_22_04-gcc-c++17.yml new file mode 100644 index 0000000..088d84b --- /dev/null +++ b/.github/workflows/ubuntu_22_04-gcc-c++17.yml @@ -0,0 +1,29 @@ +name: Build on Ubuntu 22.04 with GCC (c++17) + +on: + pull_request: + branches: [ "main" ] + +env: + BUILD_TYPE: Debug + +jobs: + build: + runs-on: ubuntu-22.04 + + steps: + - uses: actions/checkout@v3 + + - name: Configure CMake + run: cmake -B ${{github.workspace}}/build -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}} -DCMAKE_CXX_STANDARD=17 + + - name: Build Examples + run: cmake --build ${{github.workspace}}/build --config ${{env.BUILD_TYPE}} --target all_examples + + - name: Build Tests + run: cmake --build ${{github.workspace}}/build --config ${{env.BUILD_TYPE}} --target all_tests + + - name: Run Tests + working-directory: ${{github.workspace}}/build + run: ctest -C ${{env.BUILD_TYPE}} +