From 843d822cd961c03851bfe67e9a4c432d8c2dec0e Mon Sep 17 00:00:00 2001 From: Liangliang He Date: Thu, 29 Mar 2018 14:23:19 +0800 Subject: [PATCH] Update .gitlab-ci.yml --- .gitlab-ci.yml | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 2427a817..cbdb6fc7 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -1,26 +1,20 @@ stages: + - cpplint - ops_test - ops_benchmark - - cpplint cpplint: stage: cpplint - only: - - master script: - curl -o cpplint.py https://raw.githubusercontent.com/google/styleguide/gh-pages/cpplint/cpplint.py - python cpplint.py --linelength=80 --counting=detailed $(find mace -name *.h -or -name *.cc) ops_test: stage: ops_test - only: - - master script: - FAILURE_PATTERN="FAILED\|Aborted" tools/bazel-adb-run.sh //mace/ops:ops_test ops_benchmark: stage: ops_benchmark - only: - - master script: - FAILURE_PATTERN="Aborted" tools/bazel-adb-run.sh //mace/ops:ops_benchmark --pattern=.*CONV.* -- GitLab