From fc2613be3b4acb371071b32c42bdfa00cc22d9e1 Mon Sep 17 00:00:00 2001 From: Tobias Klauser Date: Thu, 4 Jan 2024 22:00:59 +0100 Subject: [PATCH] .cirrus.yml: drop FreeBSD 12, add FreeBSD 14 Also update FreeBSD 13.0 to 13.2 and Go to 1.21.5. --- .cirrus.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.cirrus.yml b/.cirrus.yml index 45cab03..99c7e03 100644 --- a/.cirrus.yml +++ b/.cirrus.yml @@ -1,10 +1,10 @@ env: CIRRUS_CLONE_DEPTH: 1 - GO_VERSION: go1.21.3 + GO_VERSION: go1.21.5 -freebsd_12_task: +freebsd_13_task: freebsd_instance: - image_family: freebsd-12-3 + image_family: freebsd-13-2 install_script: | pkg install -y go GOBIN=$PWD/bin go install golang.org/dl/${GO_VERSION}@latest @@ -12,9 +12,9 @@ freebsd_12_task: build_script: bin/${GO_VERSION} build -v ./... test_script: bin/${GO_VERSION} test -race ./... -freebsd_13_task: +freebsd_14_task: freebsd_instance: - image_family: freebsd-13-0 + image_family: freebsd-14-0 install_script: | pkg install -y go GOBIN=$PWD/bin go install golang.org/dl/${GO_VERSION}@latest