Skip to content
Snippets Groups Projects
Select Git revision
  • 61a1232e9dc34bf2fecf8b0db0151c829a9a3b28
  • master default protected
  • v1.23.2
  • v1.23.1
  • v1.23.0
  • v1.22.0
  • v1.21.1
  • v1.21.0
  • v1.20.3
  • v1.20.2
  • v1.20.1
  • v1.20.0
  • v1.19.4
  • v1.19.3
  • v1.19.2
  • v1.19.1
  • v1.19.0
  • v1.18.2
  • v1.18.1
  • v1.18.0
  • v1.17.0
  • v1.16.1
22 results

.cirrus.yml

Blame
  • .cirrus.yml 664 B
    env:
      CIRRUS_CLONE_DEPTH: 1
      GO_VERSION: go1.22.2
    
    freebsd_13_task:
      freebsd_instance:
        image_family: freebsd-13-2
      install_script: |
        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 -v ./...
      test_script: bin/${GO_VERSION} test -race ./...
    
    freebsd_14_task:
      freebsd_instance:
        image_family: freebsd-14-0
      install_script: |
        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 -v ./...
      test_script: bin/${GO_VERSION} test -race ./...