Skip to content

Commit 2820ed3

Browse files
committed
Change Windows jobs from Release to RelWithDebInfo
1 parent 1a38974 commit 2820ed3

File tree

1 file changed

+12
-12
lines changed

1 file changed

+12
-12
lines changed

.github/workflows/ci.yml

+12-12
Original file line numberDiff line numberDiff line change
@@ -363,12 +363,12 @@ jobs:
363363
cmake --build . --config Debug
364364
ctest --output-on-failure --no-tests=error -C Debug
365365
366-
- name: Use library with add_subdirectory (Release)
366+
- name: Use library with add_subdirectory (RelWithDebInfo)
367367
shell: cmd
368368
run: |
369369
cd ../boost-root/libs/%LIBRARY%/test/cmake_subdir_test/__build__
370-
cmake --build . --config Release
371-
ctest --output-on-failure --no-tests=error -C Release
370+
cmake --build . --config RelWithDebInfo
371+
ctest --output-on-failure --no-tests=error -C RelWithDebInfo
372372
373373
windows-cmake-install:
374374
strategy:
@@ -415,11 +415,11 @@ jobs:
415415
cd ../boost-root/__build__
416416
cmake --build . --target install --config Debug
417417
418-
- name: Install (Release)
418+
- name: Install (RelWithDebInfo)
419419
shell: cmd
420420
run: |
421421
cd ../boost-root/__build__
422-
cmake --build . --target install --config Release
422+
cmake --build . --target install --config RelWithDebInfo
423423
424424
- name: Use the installed library (Debug)
425425
shell: cmd
@@ -430,13 +430,13 @@ jobs:
430430
PATH C:\cmake-prefix\bin;%PATH%
431431
ctest --output-on-failure --no-tests=error -C Debug
432432
433-
- name: Use the installed library (Release)
433+
- name: Use the installed library (RelWithDebInfo)
434434
shell: cmd
435435
run: |
436436
cd ../boost-root/libs/%LIBRARY%/test/cmake_install_test/__build__
437-
cmake --build . --config Release
437+
cmake --build . --config RelWithDebInfo
438438
PATH C:\cmake-prefix\bin;%PATH%
439-
ctest --output-on-failure --no-tests=error -C Release
439+
ctest --output-on-failure --no-tests=error -C RelWithDebInfo
440440
441441
windows-cmake-test:
442442
strategy:
@@ -489,14 +489,14 @@ jobs:
489489
cd ../boost-root/__build__
490490
ctest --output-on-failure --no-tests=error -C Debug
491491
492-
- name: Build tests (Release)
492+
- name: Build tests (RelWithDebInfo)
493493
shell: cmd
494494
run: |
495495
cd ../boost-root/__build__
496-
cmake --build . --target tests --config Release
496+
cmake --build . --target tests --config RelWithDebInfo
497497
498-
- name: Run tests (Release)
498+
- name: Run tests (RelWithDebInfo)
499499
shell: cmd
500500
run: |
501501
cd ../boost-root/__build__
502-
ctest --output-on-failure --no-tests=error -C Release
502+
ctest --output-on-failure --no-tests=error -C RelWithDebInfo

0 commit comments

Comments
 (0)