Skip to content
This repository has been archived by the owner on Jun 3, 2020. It is now read-only.

Bump CI build image version to 2019-06-05-v0 #264

Merged
merged 1 commit into from
Jun 5, 2019
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,11 @@ version: 2
jobs:
build:
docker:
- image: tendermint/kms:build-2019-03-21-v0 # bump cache keys when modifying this
- image: tendermint/kms:build-2019-06-05-v0 # bump cache keys when modifying this
steps:
- checkout
- restore_cache:
key: cache-2019-03-21-v0 # bump save_cache key below too
key: cache-2019-06-05-v0 # bump save_cache key below too
- run:
name: rustfmt
command: |
Expand Down Expand Up @@ -52,7 +52,7 @@ jobs:
cargo build --features=softsign
TMKMS_BIN=./target/debug/tmkms sh tests/support/run-harness-tests.sh
- save_cache:
key: cache-2019-03-21-v0 # bump restore_cache key above too
key: cache-2019-06-05-v0 # bump restore_cache key above too
paths:
- "~/.cargo"
- "./target"