From 5fad1b87b9db5f8195d872f57550b0e2ab9a42e7 Mon Sep 17 00:00:00 2001 From: R4SAS Date: Mon, 7 Dec 2020 07:44:27 +0300 Subject: [PATCH] [actions] change build to cmake/gmake --- .github/workflows/build-freebsd.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build-freebsd.yml b/.github/workflows/build-freebsd.yml index 0acc1ea1..06b3320f 100644 --- a/.github/workflows/build-freebsd.yml +++ b/.github/workflows/build-freebsd.yml @@ -15,4 +15,6 @@ jobs: usesh: true prepare: pkg install -y devel/gmake devel/boost-libs security/openssl net/miniupnpc run: | - make USE_UPNP=yes -j3 + cd build + cmake -DWITH_UPNP=ON + gmake -j3