Skip to content

Commit

Permalink
Merge pull request cosmos#1188 from cosmos/release/v0.20.0
Browse files Browse the repository at this point in the history
Release/v0.18.0
  • Loading branch information
ebuchman authored Jun 9, 2018
2 parents cf46be2 + cb6534a commit 96451b5
Show file tree
Hide file tree
Showing 187 changed files with 10,111 additions and 3,720 deletions.
20 changes: 20 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@ jobs:
command: |
export PATH="$GOBIN:$PATH"
make install
make install_examples
- persist_to_workspace:
root: /tmp/workspace
paths:
Expand Down Expand Up @@ -84,6 +85,22 @@ jobs:
export PATH="$GOBIN:$PATH"
make test_unit
test_cli:
<<: *defaults
parallelism: 1
steps:
- attach_workspace:
at: /tmp/workspace
- restore_cache:
key: v1-pkg-cache
- restore_cache:
key: v1-tree-{{ .Environment.CIRCLE_SHA1 }}
- run:
name: Test cli
command: |
export PATH="$GOBIN:$PATH"
make test_cli
test_cover:
<<: *defaults
parallelism: 4
Expand Down Expand Up @@ -137,6 +154,9 @@ workflows:
- lint:
requires:
- setup_dependencies
- test_cli:
requires:
- setup_dependencies
- test_unit:
requires:
- setup_dependencies
Expand Down
2 changes: 2 additions & 0 deletions .github/PULL_REQUEST_TEMPLATE.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,5 @@
* [ ] Updated all code comments where relevant
* [ ] Wrote tests
* [ ] Updated CHANGELOG.md
* [ ] Updated Basecoin / other examples
* [ ] Squashed related commits and prefixed with PR number per [coding standards](https://github.com/tendermint/coding/blob/master/README.md#merging-a-pr)
5 changes: 4 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,11 @@ baseapp/data/*
coverage.txt
profile.out

### Vagrant ###
# Vagrant
.vagrant/
*.box
*.log
vagrant

# Graphviz
dependency-graph.png
Loading

0 comments on commit 96451b5

Please sign in to comment.