Skip to content
Snippets Groups Projects
Commit fd958f6e authored by John Hodge's avatar John Hodge
Browse files

Gitlab CI - Debugging

parent 51933a63
No related merge requests found
Pipeline #405 failed with stages
in 1 minute and 2 seconds
...@@ -9,7 +9,8 @@ build: ...@@ -9,7 +9,8 @@ build:
# instead of calling g++ directly you can also use some build toolkit like make # instead of calling g++ directly you can also use some build toolkit like make
# install the necessary build tools when needed # install the necessary build tools when needed
before_script: 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: script:
- make -C src/ - make -C src/
artifacts: artifacts:
...@@ -33,3 +34,6 @@ test: ...@@ -33,3 +34,6 @@ test:
- chmod u+s dispense - chmod u+s dispense
script: script:
- cd tests && su -c './TEST_basic.sh' testuser - cd tests && su -c './TEST_basic.sh' testuser
artifacts:
paths:
- tests/rundir/basic/server.log
...@@ -44,7 +44,7 @@ TRY_COMMAND() { ...@@ -44,7 +44,7 @@ TRY_COMMAND() {
DISPENSE="../dispense -f /dev/null -H localhost -P ${PORT}" 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=$! server_pid=$!
cleanup() { cleanup() {
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment