From a3900eb877a49d171991c7f58d8bdb468486eb81 Mon Sep 17 00:00:00 2001 From: songy23 Date: Wed, 4 Sep 2019 13:55:15 -0700 Subject: [PATCH 1/2] Add Circle CI config --- .circleci/config.yml | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 .circleci/config.yml diff --git a/.circleci/config.yml b/.circleci/config.yml new file mode 100644 index 000000000000..cc9952068b75 --- /dev/null +++ b/.circleci/config.yml @@ -0,0 +1,12 @@ + +version: 2 + +jobs: + build: + docker: + - image: circleci/golang:1.12 + steps: + - checkout + - run: + name: Verify + command: make all From 09cc1070870c425e468b6731a6c914d16bf7b971 Mon Sep 17 00:00:00 2001 From: Yang Song Date: Wed, 4 Sep 2019 14:21:19 -0700 Subject: [PATCH 2/2] Install tools before running Verify --- .circleci/config.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.circleci/config.yml b/.circleci/config.yml index cc9952068b75..c7c3c404eab6 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -7,6 +7,12 @@ jobs: - image: circleci/golang:1.12 steps: - checkout + - run: + name: Install bazzar + command: sudo apt-get install bzr -y + - run: + name: Install tools + command: make install-tools - run: name: Verify command: make all