From 57996b44c4eb04afba09dc6a11138193e9b99a28 Mon Sep 17 00:00:00 2001 From: Robbie Zhang Date: Thu, 14 Dec 2017 20:49:11 +0000 Subject: [PATCH] Make build and make test in CircleCI (#25) --- .circleci/config.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index b09e7af0b..025aca688 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -11,9 +11,6 @@ jobs: - run: name: Create the credentials file command: sh scripts/createCredentials.sh - - run: - name: Build and deploy connector - command: sh scripts/envCreation.sh - run: | echo 'export AZURE_AUTH_LOCATION=${outputPathCredsfile}' >> $BASH_ENV - run: | @@ -21,6 +18,9 @@ jobs: - run: name: Dependencies command: go get -v -t -d ./... + - run: + name: Build + command: V=1 make build - run: name: Tests - command: go test -v ./... + command: V=1 CI=1 make test