@@ -106,15 +106,15 @@ jobs:
106
106
${{ matrix.args }}
107
107
108
108
- name : Build C++11
109
- run : cmake --build . -j 2
109
+ run : cmake --build . -j 1
110
110
111
111
- name : Python tests C++11
112
112
run : python tools/repeat_command.py 0 cmake --build . --target pytest -j 2
113
113
114
114
- name : C++11 tests
115
115
# TODO: Figure out how to load the DLL on Python 3.8+
116
116
if : " !(runner.os == 'Windows' && (matrix.python == 3.8 || matrix.python == 3.9 || matrix.python == '3.10-dev'))"
117
- run : cmake --build . --target cpptest -j 2
117
+ run : cmake --build . --target cpptest -j 1
118
118
119
119
- name : Interface test C++11
120
120
run : cmake --build . --target test_cmake_build
@@ -134,7 +134,7 @@ jobs:
134
134
${{ matrix.args2 }}
135
135
136
136
- name : Build
137
- run : cmake --build build2 -j 2
137
+ run : cmake --build build2 -j 1
138
138
139
139
- name : Python tests
140
140
run : python tools/repeat_command.py 0 cmake --build build2 --target pytest
@@ -234,7 +234,7 @@ jobs:
234
234
-DCMAKE_CXX_STANDARD=17
235
235
236
236
- name : Build
237
- run : cmake --build build -j 2
237
+ run : cmake --build build -j 1
238
238
239
239
- name : Python tests
240
240
run : python tools/repeat_command.py 0 cmake --build build --target pytest
@@ -289,7 +289,7 @@ jobs:
289
289
-DPYTHON_EXECUTABLE=$(python3 -c "import sys; print(sys.executable)")
290
290
291
291
- name : Build
292
- run : cmake --build build -j 2
292
+ run : cmake --build build -j 1
293
293
294
294
- name : Python tests
295
295
run : python3 tools/repeat_command.py 0 cmake --build build --target pytest
@@ -356,7 +356,7 @@ jobs:
356
356
# cmake -S . -B build -DDOWNLOAD_CATCH=ON -DCMAKE_CXX_STANDARD=14 -DPYTHON_EXECUTABLE=$(python3 -c "import sys; print(sys.executable)")
357
357
#
358
358
# - name: Build
359
- # run: cmake --build build -j 2 --verbose
359
+ # run: cmake --build build -j 1 --verbose
360
360
#
361
361
# - name: Python tests
362
362
# run: python3 tools/repeat_command.py 0 cmake --build build --target pytest
@@ -400,7 +400,7 @@ jobs:
400
400
401
401
# Building before installing Pip should produce a warning but not an error
402
402
- name : Build
403
- run : cmake3 --build build -j 2 --verbose
403
+ run : cmake3 --build build -j 1 --verbose
404
404
405
405
- name : Install CMake with pip
406
406
run : |
@@ -457,7 +457,7 @@ jobs:
457
457
-DPYTHON_EXECUTABLE=$(python3 -c "import sys; print(sys.executable)")
458
458
459
459
- name : Build
460
- run : cmake --build build -j 2
460
+ run : cmake --build build -j 1
461
461
462
462
- name : Python tests
463
463
run : python3 tools/repeat_command.py 0 cmake --build build --target pytest
@@ -614,7 +614,7 @@ jobs:
614
614
-DPYTHON_EXECUTABLE=$(python3 -c "import sys; print(sys.executable)")
615
615
616
616
- name : Build
617
- run : cmake --build build -j 2
617
+ run : cmake --build build -j 1
618
618
619
619
- name : Python tests
620
620
run : python3 tools/repeat_command.py 0 cmake --build build --target pytest
@@ -761,7 +761,7 @@ jobs:
761
761
-DDOWNLOAD_EIGEN=ON
762
762
${{ matrix.args }}
763
763
- name : Build C++11
764
- run : cmake --build build -j 2
764
+ run : cmake --build build -j 1
765
765
766
766
- name : Run tests
767
767
run : python3 tools/repeat_command.py 0 cmake --build build -t pytest
@@ -807,7 +807,7 @@ jobs:
807
807
-DDOWNLOAD_EIGEN=ON
808
808
809
809
- name : Build C++14
810
- run : cmake --build build -j 2
810
+ run : cmake --build build -j 1
811
811
812
812
- name : Run all checks
813
813
run : cmake --build build -t check
@@ -858,7 +858,7 @@ jobs:
858
858
${{ matrix.args }}
859
859
860
860
- name : Build ${{ matrix.std }}
861
- run : cmake --build build -j 2
861
+ run : cmake --build build -j 1
862
862
863
863
- name : Run all checks
864
864
run : cmake --build build -t check
0 commit comments