1
0
mirror of https://github.com/SoftEtherVPN/SoftEtherVPN.git synced 2024-09-13 07:13:00 +03:00
SoftEtherVPN/.cirrus.yml
Koichiro IWAO d1471048d9 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.
2019-12-06 13:20:16 +09:00

13 lines
359 B
YAML

FreeBSD_task:
freebsd_instance:
image: freebsd-12-0-release-amd64
env:
ASSUME_ALWAYS_YES: TRUE # required for unattanded "pkg" invocation
install_script:
- pkg install cmake openssl111 git
- git submodule update --init --recursive
script:
- ./configure
- make -j $(sysctl -n hw.ncpu || echo 4) -C tmp
- ldd build/vpnserver