From 23f1b4bda1d0e9f71972ee61eb18e945088be863 Mon Sep 17 00:00:00 2001 From: Jean-Roland Gosse Date: Thu, 5 Dec 2024 15:50:41 +0100 Subject: [PATCH] ci: build cpp as debug (#30) --- .github/workflows/cpp-check.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/cpp-check.yaml b/.github/workflows/cpp-check.yaml index 1e5a57e41..671be2b9c 100644 --- a/.github/workflows/cpp-check.yaml +++ b/.github/workflows/cpp-check.yaml @@ -44,7 +44,7 @@ jobs: - name: build zenoh-pico run: | mkdir build && cd build - cmake .. -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=~/local -DZ_FEATURE_UNSTABLE_API=${{ matrix.unstable }} -DZ_FEATURE_LIVELINESS=1 -DASAN=ON + cmake .. -DCMAKE_BUILD_TYPE=Debug -DCMAKE_INSTALL_PREFIX=~/local -DZ_FEATURE_UNSTABLE_API=${{ matrix.unstable }} -DZ_FEATURE_LIVELINESS=1 -DASAN=ON cmake --build . --target install --config Release - name: clone zenoh-cpp