Skip to content
Snippets Groups Projects
Commit ae6201c5 authored by Paul Gessinger's avatar Paul Gessinger
Browse files

add format and license check CI jobs

no submodules for check jobs
parent cc822415
No related branches found
No related tags found
No related merge requests found
......@@ -4,6 +4,7 @@ stages:
- build_core
- build_framework
- test
- check
variables:
BUILD_TYPE: Release
......@@ -98,3 +99,28 @@ reproducibility_generic_extrapolation:
- source install_default/bin/setup.sh
- cd scripts
- ./testReproducibility.sh GenericExtrapolation excells_charged
format:
stage: check
image: gitlab-registry.cern.ch/acts/machines/check:latest
variables:
GIT_SUBMODULE_STRATEGY: none # we don't need to check core submodule
before_script: []
dependencies: []
script:
- CI/check_format .
artifacts:
paths:
- changed
when: on_failure
license:
stage: check
image: python:alpine3.6
variables:
GIT_SUBMODULE_STRATEGY: none # we don't need to check core submodule
before_script: []
dependencies: []
script:
- CI/check_license.py .
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