ci: use reworked docker image for ci

This commit is contained in:
Max Luebke 2023-07-19 11:39:03 +02:00
parent 3d80b7e02a
commit 5bee2d20e9

View File

@ -1,4 +1,4 @@
image: sobc/gitlab-ci
image: git.gfz-potsdam.de:5000/naaice/tug:ci
stages:
- build
@ -6,8 +6,6 @@ stages:
- static_analyze
build_release:
before_script:
- apt-get update && apt-get install -y libeigen3-dev git
stage: build
artifacts:
paths:
@ -24,9 +22,9 @@ test:
- ./build/test/testTug
lint:
before_script:
- apt-get update && apt-get install -y libeigen3-dev
stage: static_analyze
before_script:
- apk add clang-extra-tools
script:
- mkdir lint && cd lint
- cmake -DCMAKE_CXX_COMPILER=clang++ -DCMAKE_CXX_CLANG_TIDY="clang-tidy;-checks=cppcoreguidelines-*,clang-analyzer-*,performance-*,readability-*, modernize-*" -DTUG_ENABLE_TESTING=OFF ..