From 9f7967ee0fdd60f3c93c4572dbf8a55de57e9710 Mon Sep 17 00:00:00 2001 From: Jack Zampolin Date: Tue, 31 Jul 2018 17:29:33 -0700 Subject: [PATCH 1/3] Add circleci file --- .circleci/config.yaml | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 .circleci/config.yaml diff --git a/.circleci/config.yaml b/.circleci/config.yaml new file mode 100644 index 00000000..14a718b3 --- /dev/null +++ b/.circleci/config.yaml @@ -0,0 +1,12 @@ +version: 2 +jobs: + build: + docker: + - image: circleci/golang:1.10 + + working_directory: /go/src/github.com/cosmos/ethermint + + steps: + - checkout + - run: make tools deps + - run: make test-lint test-unit From 24b3aae155a09e52693ac305837769747d04b3fe Mon Sep 17 00:00:00 2001 From: Jack Zampolin Date: Tue, 31 Jul 2018 17:32:05 -0700 Subject: [PATCH 2/3] Kick tests --- .circleci/config.yaml | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/.circleci/config.yaml b/.circleci/config.yaml index 14a718b3..86411426 100644 --- a/.circleci/config.yaml +++ b/.circleci/config.yaml @@ -8,5 +8,11 @@ jobs: steps: - checkout - - run: make tools deps - - run: make test-lint test-unit + + - run: + name: "Install tools and dependancies" + command: make tools deps + + - run: + name: "Run tests" + command: make test-lint test-unit From 40b7b02c2e3e370fb7d4c486e34c811dd8efa826 Mon Sep 17 00:00:00 2001 From: Jack Zampolin Date: Tue, 31 Jul 2018 17:37:38 -0700 Subject: [PATCH 3/3] Fix name on circleci/config.yml --- .circleci/{config.yaml => config.yml} | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename .circleci/{config.yaml => config.yml} (100%) diff --git a/.circleci/config.yaml b/.circleci/config.yml similarity index 100% rename from .circleci/config.yaml rename to .circleci/config.yml