From a93000430cbb5b26a9d7ee22333f1c4cd2b843a3 Mon Sep 17 00:00:00 2001 From: Matt Jaffee Date: Wed, 28 Aug 2019 08:02:31 -0500 Subject: [PATCH] update circle CI to Go 1.12/13-rc --- .circleci/config.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 4b53161..b48d376 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -2,7 +2,7 @@ version: 2 defaults: &defaults working_directory: /go/src/github.com/pilosa/go-pilosa docker: - - image: circleci/golang:1.11 + - image: circleci/golang:1.12 environment: GO111MODULE: "on" fast-checkout: &fast-checkout @@ -30,18 +30,18 @@ jobs: - *fast-checkout - run: make install-gometalinter - run: make gometalinter - test-golang-1.12-rc: &base-test + test-golang-1.13-rc: &base-test <<: *defaults steps: - *fast-checkout - run: make test-all docker: - - image: circleci/golang:1.12-rc + - image: circleci/golang:1.13-rc - image: pilosa/pilosa:master - test-golang-1.11: + test-golang-1.12: <<: *base-test docker: - - image: circleci/golang:1.11 + - image: circleci/golang:1.12 - image: pilosa/pilosa:master workflows: version: 2 @@ -51,9 +51,9 @@ workflows: - linter: requires: - build - - test-golang-1.12-rc: + - test-golang-1.13-rc: requires: - build - - test-golang-1.11: + - test-golang-1.12: requires: - build