From 64f9c2d862790f2eb93292d5bb0e5eb492521ad9 Mon Sep 17 00:00:00 2001 From: Amlal El Mahrouss Date: Sat, 28 Feb 2026 08:25:38 +0100 Subject: Rename cmake-platform-debug.yml to cmake-multi-debug.yml Signed-off-by: Amlal El Mahrouss --- .github/workflows/cmake-multi-debug.yml | 30 ++++++++++++++++++++++++++++++ .github/workflows/cmake-platform-debug.yml | 30 ------------------------------ 2 files changed, 30 insertions(+), 30 deletions(-) create mode 100644 .github/workflows/cmake-multi-debug.yml delete mode 100644 .github/workflows/cmake-platform-debug.yml diff --git a/.github/workflows/cmake-multi-debug.yml b/.github/workflows/cmake-multi-debug.yml new file mode 100644 index 0000000..53ef1e8 --- /dev/null +++ b/.github/workflows/cmake-multi-debug.yml @@ -0,0 +1,30 @@ +name: CMake Build (DEBUG) + +on: + push: + branches: [ "develop" ] + pull_request: + branches: [ "develop" ] + +env: + BUILD_TYPE: Debug + +jobs: + build: + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v4 + + - name: Configure CMake + run: cmake -B ${{github.workspace}}/build -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}} + + - name: Build + run: cmake --build ${{github.workspace}}/build --config ${{env.BUILD_TYPE}} + + - name: Install + run: cmake --install ${{github.workspace}}/build --config ${{env.BUILD_TYPE}} + + # See https://cmake.org/cmake/help/latest/manual/ctest.1.html for more detail + run: ctest -C ${{env.BUILD_TYPE}} + diff --git a/.github/workflows/cmake-platform-debug.yml b/.github/workflows/cmake-platform-debug.yml deleted file mode 100644 index 53ef1e8..0000000 --- a/.github/workflows/cmake-platform-debug.yml +++ /dev/null @@ -1,30 +0,0 @@ -name: CMake Build (DEBUG) - -on: - push: - branches: [ "develop" ] - pull_request: - branches: [ "develop" ] - -env: - BUILD_TYPE: Debug - -jobs: - build: - runs-on: ubuntu-latest - - steps: - - uses: actions/checkout@v4 - - - name: Configure CMake - run: cmake -B ${{github.workspace}}/build -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}} - - - name: Build - run: cmake --build ${{github.workspace}}/build --config ${{env.BUILD_TYPE}} - - - name: Install - run: cmake --install ${{github.workspace}}/build --config ${{env.BUILD_TYPE}} - - # See https://cmake.org/cmake/help/latest/manual/ctest.1.html for more detail - run: ctest -C ${{env.BUILD_TYPE}} - -- cgit v1.2.3