From 1bbe0c28552bd1a16bd5122ae9d9ad310bc2cfcc Mon Sep 17 00:00:00 2001 From: Steffen Vogel Date: Tue, 30 Jan 2018 17:53:56 +0100 Subject: [PATCH] enable unit tests on CI --- fpga/.gitlab-ci.yml | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/fpga/.gitlab-ci.yml b/fpga/.gitlab-ci.yml index fcde7bf97..9c10fb7b8 100644 --- a/fpga/.gitlab-ci.yml +++ b/fpga/.gitlab-ci.yml @@ -12,7 +12,7 @@ before_script: stages: - prepare - build -# - test + - test # - deploy # Stage: prepare @@ -59,16 +59,16 @@ build:source: # Stage: test ############################################################################## -#test:unit: -# stage: test -# dependencies: -# - build:source -# script: -# - make test -# image: ${DOCKER_IMAGE_DEV}:${DOCKER_TAG_DEV} -# tags: -# - docker -# - fpga +test:unit: + stage: test + dependencies: + - build:source + script: + - tests/unit-tests --filter 'graph/*' + image: ${DOCKER_IMAGE_DEV}:${DOCKER_TAG_DEV} + tags: + - docker + - fpga # Stage: deploy ##############################################################################