Skip to content

Commit

Permalink
Github workflows: Use CMAKE_BUILD_TYPE=Debug.
Browse files Browse the repository at this point in the history
Not the lower case "debug".
  • Loading branch information
daute committed Dec 28, 2024
1 parent ef3af9e commit ace3f7b
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/codeql-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ jobs:
mkdir build
touch build build/build.ninja
cd build
cmake -G Ninja -DCMAKE_BUILD_TYPE=debug ..
cmake -G Ninja -DCMAKE_BUILD_TYPE=Debug ..
cmake --build .
cd ..
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/compile_ubuntu.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
mkdir build
touch build build/build.ninja
cd build
cmake -G "Ninja" -DCMAKE_BUILD_TYPE=debug -DWXM_UNIT_TESTS=YES ..
cmake -G "Ninja" -DCMAKE_BUILD_TYPE=Debug -DWXM_UNIT_TESTS=YES ..
cd ..
- name: compile
run: |
Expand Down Expand Up @@ -81,7 +81,7 @@ jobs:
mkdir build
touch build build/build.ninja
cd build
cmake -G "Ninja" -DCMAKE_BUILD_TYPE=debug -DWXM_UNIT_TESTS=YES -DWXM_DISABLE_WEBVIEW=ON ..
cmake -G "Ninja" -DCMAKE_BUILD_TYPE=Debug -DWXM_UNIT_TESTS=YES -DWXM_DISABLE_WEBVIEW=ON ..
cd ..
- name: compile
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/coverity-scan.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
mkdir build
touch build build/build.ninja
cd build
cmake -DCMAKE_BUILD_TYPE=debug ..
cmake -DCMAKE_BUILD_TYPE=Debug ..
cd ..
- name: Create build dir
run: |
Expand Down

0 comments on commit ace3f7b

Please sign in to comment.