From 7a01b57d9fe5ca645bd5a5ce89b569ea20eda309 Mon Sep 17 00:00:00 2001 From: ralfulrich <ralf.ulrich@kit.edu> Date: Thu, 16 May 2019 17:07:07 +0200 Subject: [PATCH] do not run coverage reports --- .gitlab-ci.yml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 28d855ea..f28d4e90 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -4,6 +4,24 @@ variables: GIT_SSL_NO_VERIFY: "1" build: + stage: build + tags: + - corsika + script: + - mkdir build + - cd build + - cmake .. -DCMAKE_BUILD_TYPE=Debug + - cmake --build . -- -j4 + - ctest -j4 -V >& test.log || gzip -v -9 -S .gz test.log + artifacts: + expire_in: 1 year + paths: + - build/test.log.gz + reports: + junit: + - build/test_outputs/junit*.xml + +coverage: stage: build tags: - corsika -- GitLab