Create CI/CD #18
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: CMake | |
on: | |
pull_request: | |
branches: [ "dev" ] | |
paths: [ "src/**" ] | |
jobs: | |
build: | |
if: ${{ github.event.pull_request.draft == false }} | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ubuntu-24.04] | |
build_type: [Release] | |
c_compiler: [gcc, clang] | |
include: | |
- os: ubuntu-24.04 | |
c_compiler: gcc | |
cpp_compiler: g++ | |
- os: ubuntu-24.04 | |
c_compiler: clang | |
cpp_compiler: clang++ | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
with: | |
submodules: false | |
- name: Prepare environment | |
id: env | |
uses: ./.github/actions/prepare_env | |
- name: Configure CMake | |
working-directory: ${{ steps.env.outputs.build-output-dir }} | |
run: > | |
cmake | |
-DCMAKE_CXX_COMPILER=${{ matrix.cpp_compiler }} | |
-DCMAKE_C_COMPILER=${{ matrix.c_compiler }} | |
-DCMAKE_BUILD_TYPE=${{ matrix.build_type }} | |
.. | |
- name: Build | |
# Build your program with the given configuration. Note that --config is needed because the | |
# default Windows generator is a multi-config generator (Visual Studio generator). | |
working-directory: ${{ steps.env.outputs.build-output-dir }} | |
run: cmake --build . --config ${{ matrix.build_type }} | |
# - name: Test | |
# working-directory: ${{ steps.env.outputs.build-output-dir }} | |
# # Execute tests defined by the CMake configuration. Note that --build-config is needed | |
# # because the default Windows generator is a multi-config generator (Visual Studio generator). | |
# # See https://cmake.org/cmake/help/latest/manual/ctest.1.html for more detail | |
# run: ctest --build-config ${{ matrix.build_type }} |