From 8c4feb933b1ee261bb7468c77aa01470c2a201e8 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Thomas=20Wei=C3=9Fschuh?= Date: Sat, 8 Oct 2022 04:12:43 +0200 Subject: [PATCH] ci: don't run make with infinite parallel jobs --- .github/workflows/cibuild.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/cibuild.sh b/.github/workflows/cibuild.sh index 841934d933..9a67d69ae3 100755 --- a/.github/workflows/cibuild.sh +++ b/.github/workflows/cibuild.sh @@ -111,8 +111,8 @@ for phase in "${PHASES[@]}"; do CC="$CC" CXX="$CXX" CFLAGS="${CFLAGS[@]}" CXXFLAGS="${CXXFLAGS[@]}" LDFLAGS="${LDFLAGS[@]}" ./configure "${opts[@]}" ;; MAKE) - make -j - make -j check-programs + make -j"$(nproc)" + make -j"$(nproc)" check-programs ;; INSTALL) make install DESTDIR=/tmp/dest -- 2.47.3