1
0
mirror of https://github.com/SoftEtherVPN/SoftEtherVPN.git synced 2024-09-13 07:13:00 +03:00
SoftEtherVPN/.cirrus.yml

31 lines
914 B
YAML
Raw Normal View History

2019-03-27 20:49:48 +03:00
FreeBSD_task:
freebsd_instance:
image: freebsd-12-1-release-amd64
2019-03-27 20:49:48 +03:00
env:
ASSUME_ALWAYS_YES: TRUE # required for unattanded "pkg" invocation
install_script:
- pkg install cmake openssl111 git
2019-03-27 20:49:48 +03:00
- git submodule update --init --recursive
script:
- ./configure
- make -j $(sysctl -n hw.ncpu || echo 4) -C tmp
2019-03-27 20:49:48 +03:00
- ldd build/vpnserver
- .ci/memory-leak-test.sh
- .ci/vpntools-check.sh
FreeBSD_task:
freebsd_instance:
# 11-3-release doesn't boot: https://cirrus-ci.org/guide/FreeBSD/
image: freebsd-11-3-stable-amd64-v20191205
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
- .ci/memory-leak-test.sh
- .ci/vpntools-check.sh