From 5cdde4f7933c7e8bab2032a24cbb2a6f49e19008 Mon Sep 17 00:00:00 2001 From: Yota Toyama Date: Tue, 1 Oct 2019 19:42:18 -0700 Subject: [PATCH] Fix CI configuration --- .circleci/config.yml | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 248854d..53a45ca 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -18,17 +18,16 @@ jobs: - checkout - run: | apt -y update --fix-missing - apt -y install bundler rake + apt -y install bundler - run: tools/dependencies.sh - run: tools/lint.sh - run: tools/build.sh - run: tools/unit_test.sh - run: tools/integration_test.sh - - run: ./liche --version > version - persist_to_workspace: root: . paths: - - version + - liche docker: docker: - image: docker:17 @@ -39,7 +38,7 @@ jobs: at: . - run: | name=$DOCKER_USER/liche - version=$(cat version) + version=$(./liche --version) if [ $CIRCLE_BRANCH = master -a $version != $(docker run $name --version) ] then