mirror of
https://github.com/SoftEtherVPN/SoftEtherVPN.git
synced 2024-11-06 01:30:40 +03:00
c223fbe8a3
As the stable version uses OpenSSL 3.0.x, it is nice to perform test with OpenSSL 3.0.x as well. Also, update FreeBSD to 13.1.
25 lines
539 B
YAML
25 lines
539 B
YAML
FreeBSD_task:
|
|
matrix:
|
|
env:
|
|
SSL: openssl
|
|
env:
|
|
# OpenSSL 3.0.x
|
|
SSL: openssl-devel
|
|
env:
|
|
# base openssl
|
|
SSL:
|
|
matrix:
|
|
freebsd_instance:
|
|
image_family: freebsd-13-1
|
|
prepare_script:
|
|
- pkg install -y pkgconf cmake git libsodium $SSL
|
|
- git submodule update --init --recursive
|
|
configure_script:
|
|
- ./configure
|
|
build_script:
|
|
- make -j $(sysctl -n hw.ncpu || echo 4) -C build
|
|
test_script:
|
|
- ldd build/vpnserver
|
|
- .ci/memory-leak-test.sh
|
|
- .ci/vpntools-check.sh
|