From 88c3477010b8661cb8f676357bacfa6eddf899eb Mon Sep 17 00:00:00 2001 From: Cody Soyland Date: Thu, 6 Feb 2020 19:39:45 -0600 Subject: [PATCH] Add Go 1.14-rc to CI --- .circleci/config.yml | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/.circleci/config.yml b/.circleci/config.yml index fb2c70908..72daf09a9 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -50,6 +50,15 @@ 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.14-rc: + <<: *defaults + docker: + - image: circleci/golang:1.14-rc + steps: + - *fast-checkout + - *add-github-auth + - run: sudo apt-get install lsof + - run: make test test-golang-1.13: &base-test <<: *defaults steps: @@ -177,6 +186,9 @@ workflows: - test-build-arm: requires: - setup + - test-golang-1.14-rc: + requires: + - setup - test-golang-1.13-enterprise: requires: - setup