Skip to content

Commit

Permalink
Remove redundant steps from Cirrus CI configuration
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
wneessen committed Oct 3, 2024
1 parent 6f10892 commit 19dcba6
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions .cirrus.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 ./...
- go test -race -cover -shuffle=on ./...

0 comments on commit 19dcba6

Please sign in to comment.