Skip to content

Commit

Permalink
Run debug build
Browse files Browse the repository at this point in the history
  • Loading branch information
ViliusSutkus89 committed Sep 2, 2024
1 parent 1849baa commit c083a27
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/build_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand All @@ -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
Expand Down

0 comments on commit c083a27

Please sign in to comment.