From: John Hodge Date: Sun, 19 Sep 2021 06:47:27 +0000 (+0800) Subject: Gitlab CI - Fix tests (using `nc`) X-Git-Url: https://git.ucc.asn.au/?p=tpg%2Fopendispense2.git;a=commitdiff_plain;h=0fb8990b502398a1d2316cb9a67bdf4bb0bde7ee Gitlab CI - Fix tests (using `nc`) --- diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 18b003c..bbfd057 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -9,14 +9,14 @@ build: # instead of calling g++ directly you can also use some build toolkit like make # install the necessary build tools when needed before_script: - - apt update && apt -y install libncurses-dev libmodbus-dev libsqlite3-dev libident-dev + - apt update && apt -y install libncurses-dev libmodbus-dev libsqlite3-dev libident-dev netcat script: - make -C src/ artifacts: paths: - dispense - cokebank_sqlite.so - - dispsrc + - dispsrv # depending on your build setup it's most likely a good idea to cache outputs to reduce the build time # cache: # paths: diff --git a/tests/_common.sh b/tests/_common.sh index 4058bb5..cb31ac7 100644 --- a/tests/_common.sh +++ b/tests/_common.sh @@ -46,10 +46,15 @@ server_pid=$! cleanup() { LOG "Killing ${server_pid}" - kill ${server_pid} + kill ${server_pid}; true } trap cleanup EXIT LOG "Server running on PID ${server_pid}" sleep 1 -echo "" | nc localhost ${PORT} +# - Make sure that the server started +if ! (echo "" | nc localhost ${PORT}); then + LOG "Server not responding on ${PORT}" + LOG "Server log contents:" + cat ${BASEDIR}server.log +fi