From 20137986e5c42ba6aa4de93f680ce1db83ec4f8a Mon Sep 17 00:00:00 2001 From: Cody Soyland Date: Fri, 22 Mar 2019 16:41:33 -0500 Subject: [PATCH] Add Go 1.12 to CircleCI --- .circleci/config.yml | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/.circleci/config.yml b/.circleci/config.yml index e505ae621..d6cbf46d0 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -38,6 +38,16 @@ jobs: - run: make build GOOS=linux GOARCH=arm GOARM=6 - run: make build GOOS=linux GOARCH=arm GOARM=7 - run: make build GOOS=linux GOARCH=arm64 + test-golang-1.12: &base-test + working_directory: /go/src/github.com/pilosa/pilosa + docker: + - image: circleci/golang:1.12 + environment: + GO111MODULE: "on" + steps: + - *fast-checkout + - run: sudo apt-get install lsof + - run: make test test-golang-1.11: &base-test <<: *defaults steps: @@ -112,6 +122,9 @@ workflows: - test-build-arm: requires: - setup + - test-golang-1.12: + requires: + - setup - test-golang-1.11: requires: - setup