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

Gitlab CI - Debugging

parent 51933a63
No related merge requests found
Pipeline #407 failed with stages
in 1 minute
...@@ -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:
...@@ -31,5 +32,11 @@ test: ...@@ -31,5 +32,11 @@ test:
- useradd testuser && chown -R testuser . - useradd testuser && chown -R testuser .
# SETUID on the client, so it can use AUTOAUTH (ident doesn't work on the container) # SETUID on the client, so it can use AUTOAUTH (ident doesn't work on the container)
- chmod u+s dispense - chmod u+s dispense
- ls -l dispense
script: script:
- cd tests && su -c './TEST_basic.sh' testuser - cd tests && su -c './TEST_basic.sh' testuser
after_script:
- cat tests/rundir/basic/server.log
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