Skip to content

Commit

Permalink
.cirrus.yml: disable buildvcs on build and test
Browse files Browse the repository at this point in the history
Explicitly disable buildvcs for build and test on FreeBSD. See
golang/go#51723 and
golang/go#51748.
  • Loading branch information
tklauser committed Mar 17, 2022
1 parent d723fb3 commit 722e1fb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .cirrus.yml
Expand Up @@ -6,8 +6,8 @@ freebsd_12_task:
freebsd_instance:
image_family: freebsd-12-3
install_script: |
pkg install -y git go
pkg install -y go
GOBIN=$PWD/bin go install golang.org/dl/${GO_VERSION}@latest
bin/${GO_VERSION} download
build_script: bin/${GO_VERSION} build -buildvcs=false -v ./...
test_script: bin/${GO_VERSION} test -race ./...
test_script: bin/${GO_VERSION} test -buildvcs=false -race ./...

0 comments on commit 722e1fb

Please sign in to comment.