We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1630f80 commit d922683Copy full SHA for d922683
1 file changed
.github/workflows/c-check.yml
@@ -28,6 +28,8 @@ jobs:
28
sudo apt-get install -y clang-format-20
29
sudo ln -sf /usr/bin/clang-format-20 /usr/local/bin/clang-format
30
clang-format --version
31
+ - name: Count processors
32
+ run: nproc
33
- name: Install Re2c
34
run: |
35
cd /tmp
@@ -36,7 +38,7 @@ jobs:
36
38
cd re2c-4.3
37
39
autoreconf -i -W all
40
./configure
- make
41
+ make -j"$(nproc)" -l"$(nproc)"
42
sudo make install
43
- name: Update rubygems & bundler
44
0 commit comments