Skip to content

Commit a638a35

Browse files
committed
pixi: Limit thread numbers
1 parent 263f407 commit a638a35

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/macos-linux-conda.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ jobs:
8383
-DCMAKE_BUILD_TYPE=${{ matrix.build_type }} \
8484
-DCMAKE_CXX_FLAGS=${{ matrix.cxx_options }}
8585
# Don't run build and clean to not overwrite CMAKE_BUILD_TYPE and CMAKE_CXX_FLAGS
86-
cmake --build build --target all
86+
cmake --build build --target all -j4
8787
ctest --test-dir build --output-on-failure
8888
8989
- name: Build EigenPy
@@ -98,7 +98,7 @@ jobs:
9898
-DCMAKE_BUILD_TYPE=${{ matrix.build_type }} \
9999
-DCMAKE_CXX_FLAGS=${{ matrix.cxx_options }}
100100
# Don't run build and clean to not overwrite CMAKE_BUILD_TYPE and CMAKE_CXX_FLAGS
101-
cmake --build build --target all
101+
cmake --build build --target all -j4
102102
ctest --test-dir build --output-on-failure
103103
104104
check:

0 commit comments

Comments
 (0)