From 614f4db8a6ec645e039e63243425e47689314597 Mon Sep 17 00:00:00 2001 From: Koichiro IWAO Date: Thu, 5 Dec 2019 11:21:57 +0900 Subject: [PATCH] FreeBSD CI: GNU make is not necessary test if build passes with BSD make --- .cirrus.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.cirrus.yml b/.cirrus.yml index d5ee3c17..e2052636 100644 --- a/.cirrus.yml +++ b/.cirrus.yml @@ -4,9 +4,9 @@ FreeBSD_task: env: ASSUME_ALWAYS_YES: TRUE # required for unattanded "pkg" invocation install_script: - - pkg install cmake gmake openssl111 git + - pkg install cmake openssl111 git - git submodule update --init --recursive script: - ./configure - - gmake -j $(nproc || sysctl -n hw.ncpu || echo 4) -C tmp + - make -j $(nproc || sysctl -n hw.ncpu || echo 4) -C tmp - ldd build/vpnserver