Skip to content

Commit 4d0d770

Browse files
committed
Don't use all the cores
Unbounded parallelism caused issues so limit to 2.
1 parent 8ed9c1f commit 4d0d770

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.circleci/config.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ commands:
2121
steps:
2222
- run:
2323
name: "Build the binary"
24-
command: cmake --build <<parameters.dir>>
24+
command: cmake --build <<parameters.dir>> -j 2
2525
- run:
2626
name: "Run the tests"
2727
command: cd <<parameters.dir>> && ctest -j2 -V

0 commit comments

Comments
 (0)