From a0c36627a2fd42fbd2a9ea887a0c74d9759b4036 Mon Sep 17 00:00:00 2001 From: Filip Bucek Date: Fri, 8 Nov 2019 17:35:32 +0100 Subject: [PATCH] switch to vm due to problem when switching from different gitlab runners on different machine e.g. from hw to vm machnie --- .gitlab-ci.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index d6c1d1f..4bcef21 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -14,7 +14,7 @@ variables: build: stage: build tags: - - shell + - vm script: - mkdir -p build - cd build @@ -30,7 +30,7 @@ build: test: stage: test tags: - - shell + - vm script: - cd build - make check @@ -40,7 +40,7 @@ test: valgrind: stage: test tags: - - shell + - vm script: - cd build - valgrind make check @@ -49,7 +49,7 @@ valgrind: cppcheck: stage: test tags: - - shell + - vm #allow_failure: true # Probably needed to allow failure script: - server-sdk/scripts/cppcheck.sh @@ -58,14 +58,14 @@ cppcheck: lineendings: stage: test tags: - - shell + - vm script: - server-sdk/scripts/check.sh codecoverage: stage: test tags: - - shell + - vm script: - server-sdk/scripts/codecoverage.sh coverage: '/^\s+functions..:\s+(\d+\.\d+%).+$/' @@ -73,6 +73,6 @@ codecoverage: doc: stage: test tags: - - shell + - vm script: - server-sdk/scripts/doc.sh clean # 'clean' better clean before generating documentation