run test cases also on FreeBSD

Signed-off-by: Nicola Murino <nicola.murino@gmail.com>
This commit is contained in:
Nicola Murino 2023-03-15 19:44:45 +01:00
parent 2710207779
commit 72e0325d05
No known key found for this signature in database
GPG key ID: 935D2952DEC4EECF
2 changed files with 29 additions and 1 deletions

28
.cirrus.yml Normal file
View file

@ -0,0 +1,28 @@
freebsd_task:
name: FreeBSD
matrix:
- name: FreeBSD 13.1
freebsd_instance:
image_family: freebsd-13-1
pkginstall_script:
- pkg update -f
- pkg install -y go
compile_script:
- go build -trimpath -tags nopgxregisterdefaulttypes -ldflags "-s -w -X github.com/drakkan/sftpgo/v2/internal/version.commit=`git describe --always --abbrev=8 --dirty` -X github.com/drakkan/sftpgo/v2/internal/version.date=`date -u +%FT%TZ`" -o sftpgo
- cd tests/eventsearcher && go build -trimpath -ldflags "-s -w" -o eventsearcher && cd -
- cd tests/ipfilter && go build -trimpath -ldflags "-s -w" -o ipfilter && cd -
setup_script:
- pw groupadd sftpgo
- pw useradd sftpgo -g sftpgo -w none -m
- cp -R . /home/sftpgo
- chown -R sftpgo:sftpgo /home/sftpgo
check_script:
- su sftpgo -c 'cd ~ && ./sftpgo initprovider && ./sftpgo resetprovider --force'
test_script:
- su sftpgo -c 'cd ~ && go test -v -tags nopgxregisterdefaulttypes -p 1 -timeout 20m ./... -coverprofile=coverage.txt -covermode=atomic'

View file

@ -104,7 +104,7 @@ If you report an invalid issue or ask for step-by-step support, your issue will
## Platforms
SFTPGo is developed and tested on Linux. After each commit, the code is automatically built and tested on Linux, macOS and Windows using [GitHub Actions](./.github/workflows/development.yml). The test cases are regularly manually executed and passed on FreeBSD. Other *BSD variants should work too.
SFTPGo is developed and tested on Linux. After each commit, the code is automatically built and tested on Linux, macOS, Windows and FreeBSD. Other *BSD variants should work too.
## Requirements