mirror of
https://github.com/SoftEtherVPN/SoftEtherVPN.git
synced 2024-11-06 09:40:41 +03:00
2dab282eb2
This commit: - Switches from Ubuntu 16.04 to 18.04 for all builds, mainly in order to use a more recent version of libsodium. - Installs libsodium, used by the WireGuard implementation.
26 lines
547 B
YAML
26 lines
547 B
YAML
FreeBSD_task:
|
|
matrix:
|
|
env:
|
|
SSL: openssl
|
|
env:
|
|
SSL: libressl
|
|
env:
|
|
SSL: libressl-devel
|
|
env:
|
|
# base openssl
|
|
SSL:
|
|
matrix:
|
|
freebsd_instance:
|
|
image_family: freebsd-12-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
|