From 2ffd15989f977a6bacac68dd2e4a0bce890cd1a2 Mon Sep 17 00:00:00 2001 From: Niklas Eiling Date: Thu, 17 Nov 2022 14:59:51 +0100 Subject: [PATCH] fix image reference in gitlab.yml --- fpga/.gitlab-ci.yml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/fpga/.gitlab-ci.yml b/fpga/.gitlab-ci.yml index e7a130430..c57867823 100644 --- a/fpga/.gitlab-ci.yml +++ b/fpga/.gitlab-ci.yml @@ -44,12 +44,13 @@ test:unit: tags: - docker allow_failure: true + image: ${DOCKER_IMAGE_DEV}:${DOCKER_TAG_DEV} script: | rm -r build && mkdir build && cd build cmake .. - make -j$(nproc) unit-tests + make -j$(nproc) unit-tests-fpga if [ "$(who | wc -l)" -eq "0" ]; then - tests/fpga-unit-tests --jobs 1 --filter 'fpga/*' + tests/unit/unit-tests-fpga --jobs 1 --filter 'fpga/*' else echo "System is currently used by: $(who)" echo "We are skipping the test. Please restart manually." @@ -72,7 +73,7 @@ test:cppcheck: src/ lib/ tests/unit/ | tee cppcheck.log - image: ${DOCKER_IMAGE_DEV}:${DOCKER_TAG} + image: ${DOCKER_IMAGE_DEV}:${DOCKER_TAG_DEV} dependencies: - build:source tags: