test circleci6

v4
vinllen 5 years ago
parent f86e93b35d
commit 4d97c4e00c
  1. 15
      .circleci/config.yml

@ -17,13 +17,16 @@ jobs:
#### expecting it in the form of #### expecting it in the form of
#### /go/src/github.com/circleci/go-tool #### /go/src/github.com/circleci/go-tool
#### /go/src/bitbucket.org/circleci/go-tool #### /go/src/bitbucket.org/circleci/go-tool
working_directory: /go/src/github.com/{{ORG_NAME}}/{{REPO_NAME}} working_directory: /go/src/github.com/alibaba/RedisShake
steps: steps:
- checkout - checkout
# specify any bash command here prefixed with `run: ` # specify any bash command here prefixed with `run: `
- run: export GOPATH=`pwd` - run:
- run: go get -u github.com/kardianos/govendor name: prepare environment
- run: cd src && ls command: |
- run: govendor sync export GOPATH=`pwd`
- run: cd ../../ && sh build.sh go get -u github.com/kardianos/govendor
cd src && tree
govendor sync -v
cd .. && sh build.sh

Loading…
Cancel
Save