From d1471048d996d37a6ea04f1860cc1eb60b027e09 Mon Sep 17 00:00:00 2001 From: Koichiro IWAO Date: Thu, 5 Dec 2019 11:59:22 +0900 Subject: [PATCH] FreeBSD CI: sysctl -n hw.ncpu is enough to get number of cpus nproc can be installed as gncpu as a part of sysutils/coreutils but not necessary for this case. --- .cirrus.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.cirrus.yml b/.cirrus.yml index e2052636..29796bec 100644 --- a/.cirrus.yml +++ b/.cirrus.yml @@ -8,5 +8,5 @@ FreeBSD_task: - git submodule update --init --recursive script: - ./configure - - make -j $(nproc || sysctl -n hw.ncpu || echo 4) -C tmp + - make -j $(sysctl -n hw.ncpu || echo 4) -C tmp - ldd build/vpnserver