Add Go 1.12 to CircleCI

This commit is contained in:
Cody Soyland 2019-03-22 16:41:33 -05:00
parent 0678c539a1
commit 20137986e5

View file

@ -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