@@ -376,7 +376,9 @@ jobs:
376
376
if : ${{ steps.config-basic.outcome == 'success' }}
377
377
shell : bash
378
378
run : |
379
- cmake --build build -j ${{ env.CMAKE_BUILD_EXTRA }}
379
+ cmake --build build \
380
+ -j5 \
381
+ ${{ env.CMAKE_BUILD_EXTRA }}
380
382
381
383
- name : Run Basic Framework tests
382
384
if : ${{ steps.config-basic.outcome == 'success' }}
@@ -386,7 +388,7 @@ jobs:
386
388
run : |
387
389
ctest --test-dir build \
388
390
-C ${{ matrix.build_mode }} \
389
- -j
391
+ -j5
390
392
#
391
393
# ################################
392
394
@@ -404,7 +406,9 @@ jobs:
404
406
- name : Build with fmt formatting-backend
405
407
shell : bash
406
408
run : |
407
- cmake --build build -j ${{ env.CMAKE_BUILD_EXTRA }}
409
+ cmake --build build \
410
+ -j5 \
411
+ ${{ env.CMAKE_BUILD_EXTRA }}
408
412
409
413
- name : Run tests with fmt formatting-backend
410
414
shell : bash
@@ -413,7 +417,7 @@ jobs:
413
417
run : |
414
418
ctest --test-dir build \
415
419
-C ${{ matrix.build_mode }} \
416
- -j
420
+ -j5
417
421
#
418
422
# ################################
419
423
@@ -432,7 +436,9 @@ jobs:
432
436
- name : Build with minimal pretty type-printing
433
437
shell : bash
434
438
run : |
435
- cmake --build build -j ${{ env.CMAKE_BUILD_EXTRA }}
439
+ cmake --build build \
440
+ -j5 \
441
+ ${{ env.CMAKE_BUILD_EXTRA }}
436
442
437
443
- name : Run tests with minimal pretty type-printing
438
444
shell : bash
@@ -441,7 +447,7 @@ jobs:
441
447
run : |
442
448
ctest --test-dir build \
443
449
-C ${{ matrix.build_mode }} \
444
- -j
450
+ -j5
445
451
#
446
452
# ################################
447
453
@@ -460,7 +466,9 @@ jobs:
460
466
- name : Build with unicode string-matchers
461
467
shell : bash
462
468
run : |
463
- cmake --build build -j ${{ env.CMAKE_BUILD_EXTRA }}
469
+ cmake --build build \
470
+ -j5 \
471
+ ${{ env.CMAKE_BUILD_EXTRA }}
464
472
465
473
- name : Run tests unicode string-matchers
466
474
shell : bash
@@ -469,7 +477,7 @@ jobs:
469
477
run : |
470
478
ctest --test-dir build \
471
479
-C ${{ matrix.build_mode }} \
472
- -j
480
+ -j5
473
481
#
474
482
# ################################
475
483
@@ -491,7 +499,9 @@ jobs:
491
499
if : ${{ steps.config-cxx23-stacktrace.outcome == 'success' }}
492
500
shell : bash
493
501
run : |
494
- cmake --build build -j ${{ env.CMAKE_BUILD_EXTRA }}
502
+ cmake --build build \
503
+ -j5 \
504
+ ${{ env.CMAKE_BUILD_EXTRA }}
495
505
496
506
- name : Run tests with std::stacktrace backend
497
507
if : ${{ steps.config-cxx23-stacktrace.outcome == 'success' }}
@@ -501,7 +511,7 @@ jobs:
501
511
run : |
502
512
ctest --test-dir build \
503
513
-C ${{ matrix.build_mode }} \
504
- -j
514
+ -j5
505
515
506
516
# cpptrace
507
517
- name : Configure with cpptrace backend
@@ -518,7 +528,9 @@ jobs:
518
528
- name : Build with cpptrace backend
519
529
shell : bash
520
530
run : |
521
- cmake --build build -j ${{ env.CMAKE_BUILD_EXTRA }}
531
+ cmake --build build \
532
+ -j5 \
533
+ ${{ env.CMAKE_BUILD_EXTRA }}
522
534
523
535
- name : Run tests with cpptrace backend
524
536
shell : bash
@@ -527,7 +539,7 @@ jobs:
527
539
run : |
528
540
ctest --test-dir build \
529
541
-C ${{ matrix.build_mode }} \
530
- -j
542
+ -j5
531
543
#
532
544
# ################################
533
545
@@ -552,7 +564,9 @@ jobs:
552
564
if : ${{ steps.config-adapter-test.outcome == 'success' }}
553
565
shell : bash
554
566
run : |
555
- cmake --build build -j ${{ env.CMAKE_BUILD_EXTRA }}
567
+ cmake --build build \
568
+ -j5 \
569
+ ${{ env.CMAKE_BUILD_EXTRA }}
556
570
557
571
- name : Run adapter tests
558
572
if : ${{ steps.config-adapter-test.outcome == 'success' }}
@@ -562,6 +576,6 @@ jobs:
562
576
run : |
563
577
ctest --test-dir build/test/adapter-tests \
564
578
-C ${{ matrix.build_mode }} \
565
- -j
579
+ -j5
566
580
#
567
581
# ################################
0 commit comments