From 38344a2a48c0a8314223ce75e00bfbe5cfcc4a7f Mon Sep 17 00:00:00 2001 From: jpellizzari Date: Thu, 8 Dec 2016 10:41:57 -0800 Subject: [PATCH] Added client linting to circle.yml --- circle.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/circle.yml b/circle.yml index 0830268fb..71fcfd8ad 100644 --- a/circle.yml +++ b/circle.yml @@ -40,6 +40,8 @@ test: parallel: true - cd $SRCDIR; make RM= client-test static: parallel: true + - cd $SRCDIR; make RM= client-lint static: + parallel: true - cd $SRCDIR; rm -f prog/scope; if [ "$CIRCLE_NODE_INDEX" = "0" ]; then GOARCH=arm make GO_BUILD_INSTALL_DEPS= RM= prog/scope; else GOOS=darwin make GO_BUILD_INSTALL_DEPS= RM= prog/scope; fi: parallel: true - cd $SRCDIR; rm -f prog/scope; make RM=: