Gitlab CI - Fix tests (using `nc`)
authorJohn Hodge <[email protected]>
Sun, 19 Sep 2021 06:47:27 +0000 (14:47 +0800)
committerJohn Hodge <[email protected]>
Sun, 19 Sep 2021 06:47:27 +0000 (14:47 +0800)
.gitlab-ci.yml
tests/_common.sh

index 18b003c..bbfd057 100644 (file)
@@ -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:
index 4058bb5..cb31ac7 100644 (file)
@@ -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

UCC git Repository :: git.ucc.asn.au