tendermint/circle.yml

22 lines
554 B
YAML
Raw Normal View History

2016-07-06 14:01:20 -07:00
machine:
environment:
GOPATH: /home/ubuntu/.go_workspace
REPO: $GOPATH/src/github.com/$CIRCLE_PROJECT_USERNAME/$CIRCLE_PROJECT_REPONAME
2016-11-09 17:12:29 -08:00
GO15VENDOREXPERIMENT: 1
2016-07-06 14:01:20 -07:00
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
test:
override:
2016-11-09 17:12:29 -08:00
- "go version"
- "cd $REPO && make test_integrations"