Skip to content

Commit

Permalink
Bump tendermint (#5)
Browse files Browse the repository at this point in the history
* bump up tendermint v0.33.4

* test: ci disable some jobs
  • Loading branch information
kfangw authored and Sangyeop.lee committed Dec 8, 2020
1 parent 2727c14 commit 5ff8553
Showing 1 changed file with 46 additions and 14 deletions.
60 changes: 46 additions & 14 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,6 @@ executors:
golang:
docker:
- image: circleci/golang:1.13
docs:
docker:
- image: tendermintdev/docker-website-deployment
environment:
AWS_REGION: us-east-1

commands:
make:
Expand Down Expand Up @@ -78,18 +73,55 @@ workflows:
version: 2
test-suite:
jobs:
- build-docs:
context: docs-deployment-master
- update-swagger-docs:
requires:
- setup-dependencies
- setup-dependencies:
# This filter enables the job for tags
filters:
branches:
tags:
only:
- docs-theme-latest
- build-docs:
context: docs-deployment-release
- /^v.*/
- test-sim-nondeterminism:
requires:
- setup-dependencies
- test-sim-import-export:
requires:
- setup-dependencies
- test-sim-after-import:
requires:
- setup-dependencies
- test-sim-multi-seed-short:
requires:
- setup-dependencies
- test-sim-multi-seed-long:
requires:
- setup-dependencies
# These filters ensure that the long sim only runs during release
filters:
branches:
only:
- master
ignore: /.*/
tags:
only:
- /v.*/
- /^v.*/
- test-cover:
requires:
- setup-dependencies
# - upload-coverage:
# requires:
# - test-cover
# - build-docs:
# context: docs-deployment-master
# filters:
# branches:
# only:
# - docs-theme-latest
# - build-docs:
# context: docs-deployment-release
# filters:
# branches:
# only:
# - master
# tags:
# only:
# - /v.*/

0 comments on commit 5ff8553

Please sign in to comment.