Skip to content
Snippets Groups Projects
Select Git revision
  • 961e81053815918f0d7f4357556acdd26011e2e1
  • master default protected
  • 1.31
  • 4.34.1
  • 4.34.0
  • 4.33.1
  • 4.33.0
  • 4.32.2
  • 4.32.1
  • 4.32.0
  • 4.31.0
  • 4.30.1
  • 4.30.0
  • 4.29.1
  • 4.29.0
  • 4.28.0
  • 4.27.0
  • 4.26.0
  • 4.25.5
  • 4.25.4
  • 4.25.3
  • 4.25.2
  • 4.25.1
23 results

biome.json

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 ./...