tendermint/circle.yml

24 lines
567 B
YAML
Raw Normal View History

2016-06-11 20:56:42 -07:00
machine:
environment:
GOPATH: /home/ubuntu/.go_workspace
REPO: $GOPATH/src/github.com/$CIRCLE_PROJECT_USERNAME/$CIRCLE_PROJECT_REPONAME
hosts:
circlehost: 127.0.0.1
localhost: 127.0.0.1
checkout:
post:
- rm -rf $REPO
- mkdir -p $HOME/.go_workspace/src/github.com/$CIRCLE_PROJECT_USERNAME
- mv $HOME/$CIRCLE_PROJECT_REPONAME $REPO
# - git submodule sync
# - git submodule update --init # use submodules
dependencies:
override:
2016-07-05 12:40:53 -07:00
- "cd $REPO && make get_vendor_deps"
2016-06-11 20:56:42 -07:00
test:
override:
2016-07-05 12:40:53 -07:00
- "cd $REPO && make test_race"