.cirrus.yml 609 B

12345678910111213141516171819202122
  1. env:
  2. CIRRUS_CLONE_DEPTH: 1
  3. freebsd_12_task:
  4. freebsd_instance:
  5. image_family: freebsd-12-3
  6. install_script: |
  7. pkg install -y git go
  8. GOBIN=$PWD/bin go install golang.org/dl/go1.17.7@latest
  9. bin/go1.17.7 download
  10. build_script: bin/go1.17.7 build -v ./...
  11. test_script: bin/go1.17.7 test -race ./...
  12. freebsd_13_task:
  13. freebsd_instance:
  14. image_family: freebsd-13-0
  15. install_script: |
  16. pkg install -y git go
  17. GOBIN=$PWD/bin go install golang.org/dl/go1.17.7@latest
  18. bin/go1.17.7 download
  19. build_script: bin/go1.17.7 build -v ./...
  20. test_script: bin/go1.17.7 test -race ./...