Skip to content

Commit c848661

Browse files
Don't build multithreaded
1 parent d727f8a commit c848661

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/push.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
run: cmake -DSET_TWEAK=Off -DBUILD_TESTS=On -DCMAKE_INSTALL_PREFIX=/usr .
3030

3131
- name: build project
32-
run: cmake --build . -j$(nproc) --target package
32+
run: cmake --build . --target package
3333

3434
- name: perform CodeQL analysis
3535
uses: github/codeql-action/analyze@v2
@@ -75,7 +75,7 @@ jobs:
7575
run: cmake -DSET_TWEAK=Off -DBUILD_TESTS=On .
7676

7777
- name: build project
78-
run: cmake --build . -j$(sysctl -n hw.logicalcpu) --target package
78+
run: cmake --build . --target package
7979

8080
- name: perform CodeQL analysis
8181
uses: github/codeql-action/analyze@v2
@@ -112,7 +112,7 @@ jobs:
112112
pkg install -y cmake git pkgconf
113113
run: |
114114
cmake -DSET_TWEAK=Off -DBUILD_TESTS=On .
115-
cmake --build . -j$(sysctl -n hw.ncpu) --target package
115+
cmake --build . --target package
116116
./fastfetch --recache --disable-linewrap false --hide-cursor false --show-errors true --load-config presets/all
117117
./flashfetch
118118
ctest

0 commit comments

Comments
 (0)