From 19dcba620aa6d47a1903d2a469a77470ea538e2b Mon Sep 17 00:00:00 2001 From: Winni Neessen Date: Thu, 3 Oct 2024 16:15:07 +0200 Subject: [PATCH] Remove redundant steps from Cirrus CI configuration Eliminated unnecessary environment variables and pkg update step to streamline the CI process. Simplified the test script by removing verbose flag from the go test command. --- .cirrus.yml | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/.cirrus.yml b/.cirrus.yml index f240ff5..8ca7373 100644 --- a/.cirrus.yml +++ b/.cirrus.yml @@ -14,12 +14,10 @@ freebsd_task: image_family: freebsd-14-0 env: - TEST_ALLOW_SEND: 0 TEST_SKIP_SENDMAIL: 1 pkginstall_script: - - pkg update -f - pkg install -y go test_script: - - go test -v -race -cover -shuffle=on ./... \ No newline at end of file + - go test -race -cover -shuffle=on ./... \ No newline at end of file