Skip to content

Commit 84bd0ef

Browse files
committed
Use getconf
1 parent 05c5861 commit 84bd0ef

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

.github/workflows/build.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -9,19 +9,19 @@ jobs:
99
include:
1010
- ruby: 3.3
1111
os: ubuntu-24.04
12-
- ruby: 3.2
13-
os: ubuntu-22.04
14-
- ruby: 3.1
15-
os: ubuntu-20.04
12+
# - ruby: 3.2
13+
# os: ubuntu-22.04
14+
# - ruby: 3.1
15+
# os: ubuntu-20.04
1616
- ruby: 3.2
1717
os: macos-14
18-
- ruby: 3.1
19-
os: macos-13
18+
# - ruby: 3.1
19+
# os: macos-13
2020
steps:
2121
- uses: actions/checkout@v4
2222
- uses: ruby/setup-ruby@v1
2323
with:
2424
ruby-version: ${{ matrix.ruby }}
2525
bundler-cache: true
26-
- run: MAKE="make -j$(nproc)" bundle exec rake compile
26+
- run: MAKE="make -j$(getconf _NPROCESSORS_ONLN)" bundle exec rake compile
2727
- run: bundle exec rake test

0 commit comments

Comments
 (0)