From a8d08e7f5089c570529f4fff1fdbd8b6010b056f Mon Sep 17 00:00:00 2001 From: Benjamin Bollen <ben@erisindustries.com> Date: Wed, 31 Aug 2016 03:25:39 +0200 Subject: [PATCH] circle: test eris-client build target --- circle.yml | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/circle.yml b/circle.yml index ba314ccc..4e74a43a 100644 --- a/circle.yml +++ b/circle.yml @@ -25,8 +25,12 @@ test: pre: - go get github.com/Masterminds/glide - cd $REPO && glide install - # Install eris-db cmd for tests - - cd $REPO && go install ./cmd/eris-db + # Test the build target for eris-db + - echo "Build target eris-db..." + - cd $REPO && go install ./cmd/eris-db && eris-db --help + # Test the build target for eris-client + - echo "Build target eris-client..." + - cd $REPO && go install ./client/cmd/eris-client && echo eris-client --help override: # We only wish to test our packages not vendored ones - echo "Running unit tests..." -- GitLab