.cirrus.yml 390 B

12345678910111213
  1. env:
  2. CIRRUS_CLONE_DEPTH: 1
  3. GO_VERSION: go1.18.1
  4. freebsd_12_task:
  5. freebsd_instance:
  6. image_family: freebsd-12-3
  7. install_script: |
  8. pkg install -y go
  9. GOBIN=$PWD/bin go install golang.org/dl/${GO_VERSION}@latest
  10. bin/${GO_VERSION} download
  11. build_script: bin/${GO_VERSION} build -buildvcs=false -v ./...
  12. test_script: bin/${GO_VERSION} test -buildvcs=false -race ./...