From c87a5202e651fe3fd742b69925b99299d059bf82 Mon Sep 17 00:00:00 2001 From: Liangliang He Date: Thu, 15 Mar 2018 16:36:53 +0800 Subject: [PATCH] Enable cppling checking in CI --- .gitlab-ci.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 715ae131..b13f7122 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -9,8 +9,7 @@ cpplint: - master script: - curl -o cpplint.py https://raw.githubusercontent.com/google/styleguide/gh-pages/cpplint/cpplint.py - # FIXME remove "|| true" after cpplint fixed - - python cpplint.py --root=mace --linelength=80 --counting=detailed $(find mace -name *.h -or -name *.cc | grep -vE "half.h") || true + - python cpplint.py --root=mace --linelength=80 --counting=detailed $(find mace -name *.h -or -name *.cc) ops_test: stage: ops_test -- GitLab