From afec7a647ff5a92c947a38cfbabecc9403bb80bc Mon Sep 17 00:00:00 2001 From: Daniel Nephin Date: Wed, 23 Mar 2022 22:01:58 -0400 Subject: [PATCH 1/2] ci: go1.18 --- .circleci/config.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 5ebd9a67..eff0dab4 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -6,13 +6,6 @@ orbs: workflows: ci: jobs: - - go/test: - name: test-go-1.14 - gotestsum-format: testname - executor: - name: go/golang - tag: 1.14-alpine - - go/test: name: test-go-1.15 gotestsum-format: testname @@ -34,6 +27,13 @@ workflows: name: go/golang tag: 1.17-alpine + - go/test: + name: test-go-1.18 + gotestsum-format: testname + executor: + name: go/golang + tag: 1.18-alpine + - go/test: name: test-windows executor: windows From 99a7f30c8d0e823574d7a69476d93431f01ee926 Mon Sep 17 00:00:00 2001 From: Daniel Nephin Date: Wed, 23 Mar 2022 22:23:52 -0400 Subject: [PATCH 2/2] fix goreleaser --- .circleci/config.yml | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index eff0dab4..4795ed73 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -77,8 +77,13 @@ commands: - run: name: Install goreleaser command: | - command -v goreleaser && exit - wget -O- -q https://install.goreleaser.com/github.com/goreleaser/goreleaser.sh | sh + wget https://github.com/goreleaser/goreleaser/releases/download/v1.7.0/goreleaser_Linux_x86_64.tar.gz + echo "e74934e7571991522324642ac7b032310f04baf192ce2a54db1dc323b97bcd7d goreleaser_Linux_x86_64.tar.gz" > checksum.txt + sha256sum -c checksum.txt + tar -xf goreleaser_Linux_x86_64.tar.gz + mkdir -p ./bin + mv goreleaser ./bin + jobs: @@ -89,7 +94,7 @@ jobs: default: false executor: name: go/golang - tag: 1.17-alpine + tag: 1.18-alpine steps: - go/install: {package: git} - go/install-ssh