From c083a27f4fea687368d291e279c0b03e25fc27a0 Mon Sep 17 00:00:00 2001 From: Vilius Sutkus '89 Date: Mon, 2 Sep 2024 22:05:00 +0300 Subject: [PATCH] Run debug build --- .github/workflows/build_test.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build_test.yml b/.github/workflows/build_test.yml index 75418e25..b5f6ba1f 100644 --- a/.github/workflows/build_test.yml +++ b/.github/workflows/build_test.yml @@ -50,7 +50,7 @@ jobs: - name: conan config run: conan config install .github/config/${{ matrix.os }}-${{ matrix.compiler }}/conan - name: conan install - run: conan install . --output-folder=build --build=missing + run: conan install . --output-folder=build --build=missing -s build_type=Debug - name: cache uses: actions/cache@v4 @@ -68,7 +68,7 @@ jobs: cmake -B build -S . -DCMAKE_TOOLCHAIN_FILE="conan_toolchain.cmake" -DCMAKE_CXX_COMPILER_LAUNCHER=ccache - -DCMAKE_BUILD_TYPE=Release + -DCMAKE_BUILD_TYPE=Debug -DCMAKE_CXX_FLAGS="-Werror" -DCMAKE_INSTALL_PREFIX=install -DODR_TEST=ON @@ -84,10 +84,10 @@ jobs: -DODR_TEST=ON - name: build - run: cmake --build build --config Release + run: cmake --build build --config Debug - name: install - run: cmake --build build --target install --config Release + run: cmake --build build --target install --config Debug - name: upload binaries to github uses: actions/upload-artifact@v4