From 3ef4905a05a69c00344269ba62190af91fb1691b Mon Sep 17 00:00:00 2001 From: Yusuke KUOKA Date: Wed, 25 Jul 2018 14:44:09 +0900 Subject: [PATCH] ci: Start building on CircleCI A step forward towards #56 --- .circleci/config.yml | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 .circleci/config.yml diff --git a/.circleci/config.yml b/.circleci/config.yml new file mode 100644 index 00000000..d09ae68a --- /dev/null +++ b/.circleci/config.yml @@ -0,0 +1,23 @@ +version: 2 +jobs: + build: + docker: + - image: circleci/golang:1.10 + working_directory: /go/src/github.com/databus23/helm-diff + steps: + - checkout + - run: + name: Install dependencies + command: | + make bootstrap + - run: + name: Run unit tests + command: | + make test + - run: + name: Verify installation + command: | + mkdir -p helmhome + make install HELM_HOME=helmhome + helmhome/plugins/helm-diff/bin/diff version +