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