From 6920d4cf4a1930d1120c5435d8e0c5c43de734dd Mon Sep 17 00:00:00 2001 From: Ben Kochie Date: Fri, 22 Mar 2019 15:59:04 +0100 Subject: [PATCH] Update CircleCI Go versions. * Add Go 1.12. * Remove Go 1.10. * Cleanup old test methods. Signed-off-by: Ben Kochie --- .circleci/config.yml | 25 +++++++++---------------- 1 file changed, 9 insertions(+), 16 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index bb545e520..bc40f5b8e 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -5,16 +5,9 @@ commands: default: steps: - run: make style check_license vet test staticcheck - no-style: - steps: - - run: make check_license vet test staticcheck no-test: steps: - run: make style check_license vet staticcheck - no-style-test: - steps: - - run: go get -t ./... - - run: make check_license vet staticcheck jobs: test: @@ -38,23 +31,23 @@ workflows: version: 2 procfs: jobs: - - test: - command: no-style-test - name: linux-1-10 - os: linux - go_version: "1.10" - test: command: default name: linux-1-11 os: linux go_version: "1.11" - test: - command: no-style-test - name: windows-1-10 - os: windows - go_version: "1.10" + command: default + name: linux-1-12 + os: linux + go_version: "1.12" - test: command: no-test name: windows-1-11 os: windows go_version: "1.11" + - test: + command: no-test + name: windows-1-12 + os: windows + go_version: "1.12"