Skip to content

Commit 3960aa4

Browse files
committed
CI-unixish.yml: fixed missing nproc on MacOS
1 parent 073c6b4 commit 3960aa4

1 file changed

Lines changed: 6 additions & 0 deletions

File tree

.github/workflows/CI-unixish.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,12 @@ jobs:
2424
run: |
2525
sudo apt-get update
2626
sudo apt-get install valgrind
27+
28+
# coreutils contains "nproc"
29+
- name: Install missing software on macos
30+
if: contains(matrix.os, 'macos')
31+
run: |
32+
brew install coreutils
2733
2834
- name: make simplecpp
2935
run: make -j$(nproc)

0 commit comments

Comments
 (0)