From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 2201) id 3DE4B3858005; Fri, 23 Dec 2022 14:45:28 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 3DE4B3858005 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=sourceware.org; s=default; t=1671806728; bh=Vec5k3APuGqrlxP13/uPpTRoAgRW7A3yS4vl9QHkM9Y=; h=From:To:Subject:Date:From; b=RjduTDxjviww8CLX2MJ8E9H5hG71LBscwHRczPDHYpTIAx3nUb1F1JAybCWV+4oSF MSTApCSdc5q7tgMzsVIbt4RycVgV2D9nBmS3NCmDawg1GGWShvxmIXjK0rZ3n10esc iGnq+ekntwaA5JQB4E2Uzzs8UKLU5J6iotYWJzx0= Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable From: Jon Turney To: cygwin-cvs@sourceware.org, newlib-cvs@sourceware.org Subject: [newlib-cygwin] Cygwin: CI: Fix thinko of 'ncores' for 'nproc' X-Act-Checkin: newlib-cygwin X-Git-Author: Jon Turney X-Git-Refname: refs/heads/master X-Git-Oldrev: 8a003605c1df0d43ab30258667107c467e0b499c X-Git-Newrev: b5d4245d5f99b61a64e65be45872a2f56fd3e37e Message-Id: <20221223144528.3DE4B3858005@sourceware.org> Date: Fri, 23 Dec 2022 14:45:28 +0000 (GMT) List-Id: https://sourceware.org/git/gitweb.cgi?p=3Dnewlib-cygwin.git;h=3Db5d4245d5f9= 9b61a64e65be45872a2f56fd3e37e commit b5d4245d5f99b61a64e65be45872a2f56fd3e37e Author: Jon Turney Date: Thu Sep 1 14:07:26 2022 +0100 Cygwin: CI: Fix thinko of 'ncores' for 'nproc' Diff: --- .github/workflows/cygwin.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/cygwin.yml b/.github/workflows/cygwin.yml index 7ad5ccf5f..ac167e748 100644 --- a/.github/workflows/cygwin.yml +++ b/.github/workflows/cygwin.yml @@ -101,7 +101,7 @@ jobs: (cd winsup; ./autogen.sh) && cd build && ../configure --prefix=3D$(realpath $(pwd)/../install) -v && - export MAKEFLAGS=3D-j$(ncores) && + export MAKEFLAGS=3D-j$(nproc) && make && make install && (cd */newlib; make info man) &&