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

Commit

Permalink
[WIP] Re-enable test harness
Browse files Browse the repository at this point in the history
  • Loading branch information
thanethomson committed Mar 20, 2019
1 parent 7905fdb commit 5427d0f
Showing 1 changed file with 5 additions and 8 deletions.
13 changes: 5 additions & 8 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-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: |
Expand Down Expand Up @@ -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"

0 comments on commit 5427d0f

Please sign in to comment.