From f0f73d417ceaaa981711ffd6b8c8ad2cfacfb0a4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Max=20L=C3=BCbke?= Date: Tue, 1 Mar 2022 14:13:04 +0100 Subject: [PATCH] Update .gitlab-ci.yml file --- .gitlab-ci.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 495bcc0..e2f8368 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -3,7 +3,7 @@ image: sobc/gitlab-ci stages: - build - test - - analysis + - analyze before_script: - apt-get update && apt-get install -y libeigen3-dev @@ -35,8 +35,8 @@ run_2D: - ./build/src/2D lint: - stage: analysis + stage: analyze script: - - mkdir build && cd build + - mkdir lint && cd lint - cmake -DCMAKE_CXX_COMPILER=clang++ -DCMAKE_CXX_CLANG_TIDY="clang-tidy;-checks=cppcoreguidelines-*,clang-analyzer-*,performance-*,readability-*, modernize-*" .. - make