From 269550c5dcf681fbc139acaa6d56d6b00b323149 Mon Sep 17 00:00:00 2001 From: Steffen Vogel Date: Tue, 30 Jan 2018 18:34:27 +0100 Subject: [PATCH] install libraries to fix loading of libvillas-fpga.so --- fpga/.gitlab-ci.yml | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/fpga/.gitlab-ci.yml b/fpga/.gitlab-ci.yml index 5575b86f6..2136dea25 100644 --- a/fpga/.gitlab-ci.yml +++ b/fpga/.gitlab-ci.yml @@ -71,13 +71,15 @@ test:unit-software: test:unit-hardware: stage: test - dependencies: - - build:source +# dependencies: +# - build:source tags: - villas-fpga script: | + mkdir build && cd build && cmake .. && make unit-tests + if [ "$(who | wc -l)" -eq "0" ]; then - build/tests/unit-tests --filter 'fpga/*' + tests/unit-tests --filter 'fpga/*' else echo "System is currently used by: $(who)" echo "We are skipping the test. Please restart manually."