diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index ed5aa509..1bd63f6d 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -7,14 +7,22 @@ include: stages: - test -test:static: +.test:static: stage: test image: ubuntu:20.04 needs: [] before_script: - apt-get update && apt-get install -y git clang-format pcregrep + +# MEN-7396: License checks disabled until we conclude on the licensing for the project +# test:static:license: +# extends: .test:static +# script: +# - ./.github/workflows/check_headers.sh + +test:static:format: + extends: .test:static script: - - ./.github/workflows/check_headers.sh - ./.github/workflows/check_include_guards.sh - ./.github/workflows/check_equivalence_tests.sh - ./.github/workflows/check_code_format.sh