From 75d427ea2fcbb7fbbce316a3affa38265ea115f7 Mon Sep 17 00:00:00 2001 From: Bram Matthys Date: Sat, 28 Aug 2021 10:25:36 +0200 Subject: [PATCH] Skip tests on Debian 8. It's LTS is EOL and fails at running tests. We may want to scratch the build tests altogether for it actually.. --- extras/build-tests/nix/run-tests | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/extras/build-tests/nix/run-tests b/extras/build-tests/nix/run-tests index 5fda969ab..673b4cf4f 100755 --- a/extras/build-tests/nix/run-tests +++ b/extras/build-tests/nix/run-tests @@ -19,6 +19,11 @@ if [ ! -d ~/cipherscan ]; then git clone -q https://github.com/mozilla/cipherscan fi +if [ "$HOSTNAME" = "deb8" ]; then + echo "Not running tests on Debian 8. It's LTS is EOL and trouble with running tests." + exit 0 +fi + # Install 'unrealircd-tests' ## XX: Temporary using this repo URL for early U6 development GIT_SSH_COMMAND='ssh -i ~/.ssh/unrealircd_tests_next.key -oIdentitiesOnly=yes' git clone -q --branch unreal60 git@github.com:/syzop/unrealircd-tests-next.git unrealircd-tests