From d68c5807fa768d60ff6ce5574a39bfdd15f18ee6 Mon Sep 17 00:00:00 2001 From: Tobias Klauser Date: Tue, 1 Feb 2022 16:20:35 +0100 Subject: [PATCH] .cirrus.yml: use correct Go 1.17.6 binary Fixes: 4ec802aa7102 (".cirrus.yml: update to Go 1.17.6, use `go install`") --- .cirrus.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.cirrus.yml b/.cirrus.yml index a7c9540..11a39e2 100644 --- a/.cirrus.yml +++ b/.cirrus.yml @@ -7,6 +7,6 @@ freebsd_12_task: install_script: | pkg install -y git go GOBIN=$PWD/bin go install golang.org/dl/go1.17.6@latest - bin/go1.17 download - build_script: bin/go1.17 build -v ./... - test_script: bin/go1.17 test -race ./... + bin/go1.17.6 download + build_script: bin/go1.17.6 build -v ./... + test_script: bin/go1.17.6 test -race ./...