IAP GITLAB

Skip to content
Snippets Groups Projects
Commit 4254d067 authored by Ralf M Ulrich's avatar Ralf M Ulrich Committed by Ralf Ulrich
Browse files

quality

parent 2fd97b3c
No related branches found
No related tags found
1 merge request!188Resolve "Improve merge request approval process"
...@@ -10,6 +10,7 @@ variables: ...@@ -10,6 +10,7 @@ variables:
# normal multi-step pipeline for each commit # normal multi-step pipeline for each commit
stages: stages:
- config - config
- quality
- build_test - build_test
- optional - optional
...@@ -51,6 +52,24 @@ config-clang-8: ...@@ -51,6 +52,24 @@ config-clang-8:
- build - build
- corsika-data - corsika-data
check-copyrights:
image: corsika/devel:u-18.04
stage: quality
tags:
- corsika
script:
- ./do-copyright.py
check-clang-format:
image: corsika/devel:u-18.04
before_script:
- apt-get update && apt-get install -y -qq clang-format
stage: quality
tags:
- corsika
script:
- ./do-clang-format.py --all
# normal pipeline for each commit # normal pipeline for each commit
build-test-u-18_04: build-test-u-18_04:
image: corsika/devel:u-18.04 image: corsika/devel:u-18.04
...@@ -225,20 +244,3 @@ sanity: ...@@ -225,20 +244,3 @@ sanity:
when: manual when: manual
allow_failure: true allow_failure: true
check-copyrights:
image: corsika/devel:u-18.04
stage: optional
tags:
- corsika
script:
- ./do-copyright.py
check-clang-format:
image: corsika/devel:u-18.04
before_script:
- apt-get update && apt-get install -y -qq clang-format
stage: optional
tags:
- corsika
script:
- ./do-clang-format.py --all
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment