Make build and make test in CircleCI (#25)

This commit is contained in:
Robbie Zhang
2017-12-14 20:49:11 +00:00
committed by GitHub
parent 0c10accf41
commit 57996b44c4

View File

@@ -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