mirror of
https://github.com/pissnet/pissircd.git
synced 2025-05-07 22:15:05 +01:00
Don't test w/services on FreeBSD since it errors mysteriously atm.
This commit is contained in:
parent
2c23d4299c
commit
ca576944e6
1 changed files with 8 additions and 2 deletions
|
@ -24,8 +24,14 @@ git clone -q https://github.com/unrealircd/unrealircd-tests.git
|
|||
cd unrealircd-tests
|
||||
|
||||
# Run the test framework, testing both services:
|
||||
./run -services anope || exit 1
|
||||
./run -services atheme || exit 1
|
||||
if uname -a|grep -q FreeBSD; then
|
||||
# FreeBSD runs without services since they fail mysteriously:
|
||||
./run -services none || exit 1
|
||||
else
|
||||
# Linux tests both with anope and atheme services:
|
||||
./run -services anope || exit 1
|
||||
./run -services atheme || exit 1
|
||||
fi
|
||||
|
||||
# Do cipherscan test at the end
|
||||
if [[ "$OSTYPE" != "freebsd"* ]]; then
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue