@@ -363,12 +363,12 @@ jobs:
363
363
cmake --build . --config Debug
364
364
ctest --output-on-failure --no-tests=error -C Debug
365
365
366
- - name : Use library with add_subdirectory (Release )
366
+ - name : Use library with add_subdirectory (RelWithDebInfo )
367
367
shell : cmd
368
368
run : |
369
369
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
372
372
373
373
windows-cmake-install :
374
374
strategy :
@@ -415,11 +415,11 @@ jobs:
415
415
cd ../boost-root/__build__
416
416
cmake --build . --target install --config Debug
417
417
418
- - name : Install (Release )
418
+ - name : Install (RelWithDebInfo )
419
419
shell : cmd
420
420
run : |
421
421
cd ../boost-root/__build__
422
- cmake --build . --target install --config Release
422
+ cmake --build . --target install --config RelWithDebInfo
423
423
424
424
- name : Use the installed library (Debug)
425
425
shell : cmd
@@ -430,13 +430,13 @@ jobs:
430
430
PATH C:\cmake-prefix\bin;%PATH%
431
431
ctest --output-on-failure --no-tests=error -C Debug
432
432
433
- - name : Use the installed library (Release )
433
+ - name : Use the installed library (RelWithDebInfo )
434
434
shell : cmd
435
435
run : |
436
436
cd ../boost-root/libs/%LIBRARY%/test/cmake_install_test/__build__
437
- cmake --build . --config Release
437
+ cmake --build . --config RelWithDebInfo
438
438
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
440
440
441
441
windows-cmake-test :
442
442
strategy :
@@ -489,14 +489,14 @@ jobs:
489
489
cd ../boost-root/__build__
490
490
ctest --output-on-failure --no-tests=error -C Debug
491
491
492
- - name : Build tests (Release )
492
+ - name : Build tests (RelWithDebInfo )
493
493
shell : cmd
494
494
run : |
495
495
cd ../boost-root/__build__
496
- cmake --build . --target tests --config Release
496
+ cmake --build . --target tests --config RelWithDebInfo
497
497
498
- - name : Run tests (Release )
498
+ - name : Run tests (RelWithDebInfo )
499
499
shell : cmd
500
500
run : |
501
501
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