shithub: furgit

Download patch

ref: 481cc22d860a923d90373c1e6dca915f745051a0
parent: 4c136fc653775d7a5f460ceaa3f7204a64ab4aef
author: Runxi Yu <me@runxiyu.org>
date: Fri Jan 30 04:09:57 EST 2026

ci: Remove FreeBSD support for now

builds.sr.ht's FreeBSD image has golangci-lint 1.24, and we need Go
1.25. There's also very little advantage, as of right now, to have
multiple OSes in the CI.

--- a/.builds/freebsd.yml
+++ /dev/null
@@ -1,29 +1,0 @@
-image: freebsd/latest
-packages:
-  - golangci-lint
-  - go
-tasks:
-  - build: |
-      cd furgit
-      go build
-  - test-sha256: |
-      cd furgit
-      go test -v ./...
-  - test-sha1: |
-      cd furgit
-      go test -v -tags sha1 ./...
-  - test-race-sha256: |
-      cd furgit
-      go test -race -v ./...
-  - test-race-sha1: |
-      cd furgit
-      go test -race -v -tags sha1 ./...
-  - test-purego-sha256: |
-      cd furgit
-      go test -v -tags purego ./...
-  - lint: |
-      cd furgit
-      golangci-lint run ./...
-  - vet: |
-      cd furgit
-      go vet ./...
--