sftpgo-mirror/.cirrus.yml
Nicola Murino 783dff369b
CI FreeBSD: install git
Signed-off-by: Nicola Murino <nicola.murino@gmail.com>
2023-03-15 20:20:52 +01:00

29 lines
1.1 KiB
YAML

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
- pkg install -y git
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'