mirror of
https://github.com/nlohmann/json
synced 2024-11-27 06:10:06 +00:00
👷 make debug build
This commit is contained in:
parent
77e0ba8750
commit
44a2158b18
2
.github/workflows/macos.yml
vendored
2
.github/workflows/macos.yml
vendored
@ -10,7 +10,7 @@ jobs:
|
||||
steps:
|
||||
- uses: actions/checkout@v1
|
||||
- name: cmake
|
||||
run: cmake -S . -B build
|
||||
run: cmake -S . -B build -D CMAKE_BUILD_TYPE=Debug
|
||||
- name: build
|
||||
run: cmake --build build --parallel 10
|
||||
- name: test
|
||||
|
2
.github/workflows/ubuntu.yml
vendored
2
.github/workflows/ubuntu.yml
vendored
@ -10,7 +10,7 @@ jobs:
|
||||
steps:
|
||||
- uses: actions/checkout@v1
|
||||
- name: cmake
|
||||
run: cmake -S . -B build
|
||||
run: cmake -S . -B build -D CMAKE_BUILD_TYPE=Debug
|
||||
- name: build
|
||||
run: cmake --build build --parallel 10
|
||||
- name: test
|
||||
|
4
.github/workflows/windows.yml
vendored
4
.github/workflows/windows.yml
vendored
@ -10,8 +10,8 @@ jobs:
|
||||
steps:
|
||||
- uses: actions/checkout@v1
|
||||
- name: cmake
|
||||
run: cmake -S . -B build -G "Visual Studio 16 2019"
|
||||
run: cmake -S . -B build -G "Visual Studio 16 2019" -D CMAKE_BUILD_TYPE=Debug
|
||||
- name: build
|
||||
run: cmake --build build --parallel 10
|
||||
- name: test
|
||||
run: cd build ; ctest -j 10 -C Release
|
||||
run: cd build ; ctest -j 10 -C Debug
|
||||
|
Loading…
Reference in New Issue
Block a user