diff options
author | Jon Turney <jon.turney@dronecode.org.uk> | 2022-09-01 14:07:26 +0100 |
---|---|---|
committer | Jon Turney <jon.turney@dronecode.org.uk> | 2022-12-23 14:02:06 +0000 |
commit | b5d4245d5f99b61a64e65be45872a2f56fd3e37e (patch) | |
tree | eda9e60e53c9cb6b100c0ab16817b4087769d0c7 /.github | |
parent | 8a003605c1df0d43ab30258667107c467e0b499c (diff) | |
download | newlib-b5d4245d5f99b61a64e65be45872a2f56fd3e37e.zip newlib-b5d4245d5f99b61a64e65be45872a2f56fd3e37e.tar.gz newlib-b5d4245d5f99b61a64e65be45872a2f56fd3e37e.tar.bz2 |
Cygwin: CI: Fix thinko of 'ncores' for 'nproc'
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/cygwin.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/cygwin.yml b/.github/workflows/cygwin.yml index 7ad5ccf..ac167e7 100644 --- a/.github/workflows/cygwin.yml +++ b/.github/workflows/cygwin.yml @@ -101,7 +101,7 @@ jobs: (cd winsup; ./autogen.sh) && cd build && ../configure --prefix=$(realpath $(pwd)/../install) -v && - export MAKEFLAGS=-j$(ncores) && + export MAKEFLAGS=-j$(nproc) && make && make install && (cd */newlib; make info man) && |