circle make install

int
This commit is contained in:
rigelrozanski 2018-04-18 13:23:47 -04:00
parent 8c59ced191
commit be93b760e7
1 changed files with 3 additions and 1 deletions

View File

@ -31,7 +31,7 @@ jobs:
name: binaries name: binaries
command: | command: |
export PATH="$GOBIN:$PATH" export PATH="$GOBIN:$PATH"
make build make install
- persist_to_workspace: - persist_to_workspace:
root: /tmp/workspace root: /tmp/workspace
paths: paths:
@ -59,6 +59,8 @@ jobs:
- run: - run:
name: Run tests name: Run tests
command: | command: |
export PATH="$GOBIN:$PATH"
make install
for pkg in $(go list github.com/cosmos/cosmos-sdk/... | grep -v /vendor/ | circleci tests split --split-by=timings); do for pkg in $(go list github.com/cosmos/cosmos-sdk/... | grep -v /vendor/ | circleci tests split --split-by=timings); do
id=$(basename "$pkg") id=$(basename "$pkg")