diff options
Diffstat (limited to 'tools/ci/branches')
-rw-r--r-- | tools/ci/branches/master/.gitlab-ci.yml | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/tools/ci/branches/master/.gitlab-ci.yml b/tools/ci/branches/master/.gitlab-ci.yml index 610c4dfda..c2ad2ca89 100644 --- a/tools/ci/branches/master/.gitlab-ci.yml +++ b/tools/ci/branches/master/.gitlab-ci.yml @@ -267,12 +267,21 @@ mplint: PACKAGES: gcc g++ git make autoconf automake autopoint gettext +cpplint_line_length_warning: + stage: prebuild + script: + - ./tools/ci/jobs/cpplint.sh --linelength=80 + <<: *job-push + variables: + PACKAGES: wget grep + allow_failure: true + linters: stage: prebuild script: - ./tools/ci/jobs/pngcheck.sh - ./tools/ci/jobs/imagemagiccheck.sh - - ./tools/ci/jobs/cpplint.sh + - ./tools/ci/jobs/cpplint.sh --linelength=120 - ./tools/ci/jobs/nsiqcppstyle.sh <<: *job-push variables: |