summaryrefslogtreecommitdiffstats
path: root/.github/workflows/c-cpp.yml
diff options
context:
space:
mode:
authorDarren Tucker <dtucker@dtucker.net>2023-10-12 22:01:23 +1100
committerDarren Tucker <dtucker@dtucker.net>2023-10-12 22:01:23 +1100
commit637624dbbac13f2bc3c8ec5b15c9d627d07f2935 (patch)
tree667a23999bbcd04067c1e39482f64fc15fa3cf01 /.github/workflows/c-cpp.yml
parent971e0cfcfd52ef1d73cf5244074c306a60006e89 (diff)
Don't use make -j2.
While we have 2 cores available on github runners, not using it means that the most recent log message is the actual failure, rather than having to search back through the log for it.
Diffstat (limited to '.github/workflows/c-cpp.yml')
-rw-r--r--.github/workflows/c-cpp.yml2
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/c-cpp.yml b/.github/workflows/c-cpp.yml
index be0c97f8..ca6a0a54 100644
--- a/.github/workflows/c-cpp.yml
+++ b/.github/workflows/c-cpp.yml
@@ -108,7 +108,7 @@ jobs:
- name: make clean
run: make clean
- name: make
- run: make -j2
+ run: make
- name: make tests
run: sh ./.github/run_test.sh ${{ matrix.config }}
env: