summaryrefslogtreecommitdiffstats
path: root/.github/workflows/c-cpp.yml
diff options
context:
space:
mode:
authorDarren Tucker <dtucker@dtucker.net>2023-10-12 13:01:23 +0200
committerDarren Tucker <dtucker@dtucker.net>2023-10-12 13:01:23 +0200
commit637624dbbac13f2bc3c8ec5b15c9d627d07f2935 (patch)
tree667a23999bbcd04067c1e39482f64fc15fa3cf01 /.github/workflows/c-cpp.yml
parentCorrect arg order for ED255519 AC_LINK_IFELSE test. (diff)
downloadopenssh-637624dbbac13f2bc3c8ec5b15c9d627d07f2935.tar.xz
openssh-637624dbbac13f2bc3c8ec5b15c9d627d07f2935.zip
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 '')
-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 be0c97f84..ca6a0a54f 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: