From a5a0a42d1f063fa3f6f4a16582a8bb72d80c89b1 Mon Sep 17 00:00:00 2001 From: Rebecca Kohlhaas <rebecca.kohlhaas@iws.uni-stuttgart.de> Date: Thu, 27 Jun 2024 07:30:34 +0000 Subject: [PATCH] Pipeline: added build path --- .gitlab-ci.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 44187d332..50ce50ec1 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -50,13 +50,15 @@ build-job: # This job runs in the build stage, which runs first. - echo "Compiling the code..." - pip install . - echo "Compile complete." - - + artifacts: + paths: + - build/* unit-test-job: # This job runs in the test stage. stage: test # It only starts when the job in the build stage completes successfully. script: - echo "Running unit tests..." + - pip install pytest - pytest --junitxml=report.xml artifacts: when: always -- GitLab