Skip to content

Commit f31e7b8

Browse files
committed
.cirrus.yml: drop FreeBSD 12, add FreeBSD 13 and 14
Also update Go to 1.21.5.
1 parent 52afc34 commit f31e7b8

File tree

1 file changed

+15
-5
lines changed

1 file changed

+15
-5
lines changed

.cirrus.yml

+15-5
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,23 @@
11
env:
22
CIRRUS_CLONE_DEPTH: 1
3-
GO_VERSION: go1.21.3
3+
GO_VERSION: go1.21.5
44

5-
freebsd_12_task:
5+
freebsd_13_task:
66
freebsd_instance:
7-
image_family: freebsd-12-3
7+
image_family: freebsd-13-2
88
install_script: |
99
pkg install -y go
1010
GOBIN=$PWD/bin go install golang.org/dl/${GO_VERSION}@latest
1111
bin/${GO_VERSION} download
12-
build_script: bin/${GO_VERSION} build -buildvcs=false -v ./...
13-
test_script: bin/${GO_VERSION} test -buildvcs=false -race ./...
12+
build_script: bin/${GO_VERSION} build -v ./...
13+
test_script: bin/${GO_VERSION} test -race ./...
14+
15+
freebsd_14_task:
16+
freebsd_instance:
17+
image_family: freebsd-14-0
18+
install_script: |
19+
pkg install -y go
20+
GOBIN=$PWD/bin go install golang.org/dl/${GO_VERSION}@latest
21+
bin/${GO_VERSION} download
22+
build_script: bin/${GO_VERSION} build -v ./...
23+
test_script: bin/${GO_VERSION} test -race ./...

0 commit comments

Comments
 (0)