From: John Hodge Date: Sun, 19 Sep 2021 07:00:11 +0000 (+0800) Subject: Gitlab CI - Install libraries for test properly X-Git-Url: https://git.ucc.asn.au/?a=commitdiff_plain;h=4a5968db77587c2a6d8a25901c0943e25bb39613;p=tpg%2Fopendispense2.git Gitlab CI - Install libraries for test properly --- diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index c16ff8e..da4f6c6 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -26,6 +26,7 @@ build: test: stage: test before_script: - - apt update && apt -y install libncurses libmodbus libsqlite3 libident netcat + # Install the -dev versions to avoid needing to find the actual library names + - apt update && apt -y install libncurses-dev libmodbus-dev libsqlite3-dev libident netcat script: - cd tests && ./TEST_basic.sh