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