diff options
| author | Amlal El Mahrouss <amlal@nekernel.org> | 2026-02-28 08:26:44 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2026-02-28 08:26:44 +0100 |
| commit | fccb6a8d2e027691ac30e190a0dddc4891e382a6 (patch) | |
| tree | 4d604bbb25e98dd7bd82c6e35580c06925ebbb57 /.github/workflows/cmake-platform-debug.yml | |
| parent | e557fa4f57f327f85c28060661ba02327023506f (diff) | |
Rename cmake-multi-platform.yml to cmake-platform-debug.yml
Signed-off-by: Amlal El Mahrouss <amlal@nekernel.org>
Diffstat (limited to '.github/workflows/cmake-platform-debug.yml')
| -rw-r--r-- | .github/workflows/cmake-platform-debug.yml | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/.github/workflows/cmake-platform-debug.yml b/.github/workflows/cmake-platform-debug.yml new file mode 100644 index 0000000..53ef1e8 --- /dev/null +++ b/.github/workflows/cmake-platform-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}} + |
