diff options
author | Darren Tucker <dtucker@dtucker.net> | 2023-10-12 13:01:23 +0200 |
---|---|---|
committer | Darren Tucker <dtucker@dtucker.net> | 2023-10-12 13:01:23 +0200 |
commit | 637624dbbac13f2bc3c8ec5b15c9d627d07f2935 (patch) | |
tree | 667a23999bbcd04067c1e39482f64fc15fa3cf01 /.github/workflows/c-cpp.yml | |
parent | Correct arg order for ED255519 AC_LINK_IFELSE test. (diff) | |
download | openssh-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.yml | 2 |
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: |