From 5427d0fe076fa2b388594a7d69fc578504017e02 Mon Sep 17 00:00:00 2001 From: Thane Thomson Date: Wed, 20 Mar 2019 12:53:15 -0400 Subject: [PATCH] [WIP] Re-enable test harness --- .circleci/config.yml | 13 +++++-------- 1 file changed, 5 insertions(+), 8 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 24d5cbe..e23b7b2 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -3,11 +3,11 @@ version: 2 jobs: build: docker: - - image: tendermint/kms:build-2019-01-25-v0 # bump cache keys when modifying this + - image: tendermint/kms:build-2019-03-20-v0 # bump cache keys when modifying this steps: - checkout - restore_cache: - key: cache-2019-01-25-v0 # bump save_cache key below too + key: cache-2019-03-20-v0 # bump save_cache key below too - run: name: rustfmt command: | @@ -47,13 +47,10 @@ jobs: - run: name: validate against test harness command: | - echo "TODO(tarcieri): re-enable me!!!" - # TODO(tarcieri): update Tendermint config files and re-enabled test harness - # See: https://github.com/tendermint/kms/issues/207 - # cargo build --features=softsign - # TMKMS_BIN=./target/debug/tmkms sh tests/support/run-harness-tests.sh + cargo build --features=softsign + TMKMS_BIN=./target/debug/tmkms sh tests/support/run-harness-tests.sh - save_cache: - key: cache-2019-01-25-v0 # bump restore_cache key above too + key: cache-2019-03-20-v0 # bump restore_cache key above too paths: - "~/.cargo" - "./target"