From bdd08ad9b0bae9762d4b0a659209f9a5054b200c Mon Sep 17 00:00:00 2001 From: Filip Bucek Date: Tue, 5 Nov 2019 10:42:22 +0100 Subject: [PATCH] updated gitlab-ci --- .gitlab-ci.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index ed6e6bb..7cb6736 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -10,7 +10,7 @@ stages: build: # name of task stage: build # in what stage it will run ( 1. build then test etc ) tags: # Tags are used to choose correct gitlab-runner - - linux # spaceti-runner server has running runners and one has tag 'hw' + - shell # spaceti-runner server has running runners and one has tag 'hw' script: # run in bash - mkdir -p build - cd build @@ -27,7 +27,7 @@ cache: test: # name of task stage: test # in what stage it will run ( 1. build then test etc ) tags: # Tags are used to choose correct gitlab-runner - - linux # spaceti-runner server has running runners and one has tag 'hw' + - shell # spaceti-runner server has running runners and one has tag 'hw' script: # run in bash - cd build - make check test @@ -35,7 +35,7 @@ test: # name of task valgrind: # name of task stage: test # in what stage it will run ( 1. build then test etc ) tags: # Tags are used to choose correct gitlab-runner - - linux # spaceti-runner server has running runners and one has tag 'hw' + - shell # spaceti-runner server has running runners and one has tag 'hw' script: # run in bash - cd build - valgrind make check test @@ -45,7 +45,7 @@ valgrind: # name of task cppcheck: stage: test # in what stage it will run ( 1. build then test etc ) tags: # Tags are used to choose correct gitlab-runner - - linux # spaceti-runner server has running runners and one has tag 'hw' + - shell # spaceti-runner server has running runners and one has tag 'hw' allow_failure: true script: # run in bash - cppcheck src --suppress=unusedFunction --enable=all -i build --error-exitcode=1