From 45c8529b136d8a78a1f7e6059db3a868b9616fe4 Mon Sep 17 00:00:00 2001 From: John Hodge Date: Mon, 18 Oct 2021 20:54:23 +0800 Subject: [PATCH] Gitlab CI - Debugging --- .gitlab-ci.yml | 6 +++++- tests/_common.sh | 2 +- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 6f6de61..49af60d 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -9,7 +9,8 @@ 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 script: - make -C src/ artifacts: @@ -33,3 +34,6 @@ test: - chmod u+s dispense script: - cd tests && su -c './TEST_basic.sh' testuser + artifacts: + paths: + - tests/rundir/** diff --git a/tests/_common.sh b/tests/_common.sh index e43a2c8..0f62430 100644 --- a/tests/_common.sh +++ b/tests/_common.sh @@ -44,7 +44,7 @@ TRY_COMMAND() { DISPENSE="../dispense -f /dev/null -H localhost -P ${PORT}" -LD_LIBRARY_PATH=.. ../dispsrv -f ${BASEDIR}cfg_server.conf --dont-daemonise > ${BASEDIR}server.log 2>&1 & +LD_LIBRARY_PATH=.. ../dispsrv -f ${BASEDIR}cfg_server.conf --dont-daemonise -d 2 > ${BASEDIR}server.log 2>&1 & server_pid=$! cleanup() { -- 2.20.1