Skip to content

Commit 3b08389

Browse files
committed
CI-unixish.yml: fixed missing nproc on macos-*
1 parent c1c343e commit 3b08389

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
@@ -31,6 +31,12 @@ jobs:
3131
sudo apt-get update
3232
sudo apt-get install libc++-18-dev
3333
34+
# coreutils contains "nproc"
35+
- name: Install missing software on macos
36+
if: contains(matrix.os, 'macos')
37+
run: |
38+
brew install coreutils
39+
3440
# TODO: bail out on warning
3541
- name: make simplecpp
3642
run: make -j$(nproc)

0 commit comments

Comments
 (0)