1
0
mirror of https://github.com/SoftEtherVPN/SoftEtherVPN.git synced 2024-08-25 05:53:00 +03:00

FreeBSD CI: perform memory leak test as well as Linux/Windows

and also move `vpncmd /tools /cmd:check` under .ci directory.
This commit is contained in:
Koichiro IWAO 2019-12-06 15:17:34 +09:00
parent c38b0b0398
commit 1c07ddcb8d
2 changed files with 9 additions and 2 deletions

5
.ci/vpntools-check.sh Executable file
View File

@ -0,0 +1,5 @@
#!/bin/sh
set -eux
./build/vpncmd /tools /cmd:check

View File

@ -10,7 +10,8 @@ FreeBSD_task:
- ./configure
- make -j $(sysctl -n hw.ncpu || echo 4) -C tmp
- ldd build/vpnserver
- build/vpncmd /tool /cmd:check
- .ci/memory-leak-test.sh
- .ci/vpntools-check.sh
FreeBSD_task:
freebsd_instance:
@ -25,4 +26,5 @@ FreeBSD_task:
- ./configure
- make -j $(sysctl -n hw.ncpu || echo 4) -C tmp
- ldd build/vpnserver
- build/vpncmd /tool /cmd:check
- .ci/memory-leak-test.sh
- .ci/vpntools-check.sh