From 2d3f9db8c08b9f90cc4d4baae086bc7ffbfccccc Mon Sep 17 00:00:00 2001 From: Thane Thomson Date: Fri, 25 Jan 2019 10:32:11 +0200 Subject: [PATCH] Updates Docker image for CircleCI build to use new remote_val_harness build --- .circleci/config.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 979eee0..1cfcfbe 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -3,11 +3,11 @@ version: 2 jobs: build: docker: - - image: tendermint/kms:build-2019-01-24-v0 # bump cache keys when modifying this + - image: tendermint/kms:build-2019-01-25-v0 # bump cache keys when modifying this steps: - checkout - restore_cache: - key: cache-2019-01-24-v0 # bump save_cache key below too + key: cache-2019-01-25-v0 # bump save_cache key below too - run: name: rustfmt command: | @@ -52,7 +52,7 @@ jobs: command: | TMKMS_BIN=./target/debug/tmkms sh tests/support/run-harness-tests.sh - save_cache: - key: cache-2019-01-24-v0 # bump restore_cache key above too + key: cache-2019-01-25-v0 # bump restore_cache key above too paths: - "~/.cargo" - "./target"