aboutsummaryrefslogtreecommitdiff
path: root/.builds/freebsd.yml
diff options
context:
space:
mode:
Diffstat (limited to '.builds/freebsd.yml')
-rw-r--r--.builds/freebsd.yml30
1 files changed, 30 insertions, 0 deletions
diff --git a/.builds/freebsd.yml b/.builds/freebsd.yml
new file mode 100644
index 00000000..8f82c35e
--- /dev/null
+++ b/.builds/freebsd.yml
@@ -0,0 +1,30 @@
+image: freebsd/latest
+packages:
+ - golangci-lint
+ - go
+ - go-dev
+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 ./...