12 lines
289 B
YAML
12 lines
289 B
YAML
# See https://cirrus-ci.org/guide/FreeBSD/
|
|
freebsd_instance:
|
|
image_family: freebsd-14-3
|
|
|
|
task:
|
|
name: Test on FreeBSD
|
|
install_script: pkg install -y go125 dbus
|
|
test_script: |
|
|
/usr/local/etc/rc.d/dbus onestart && \
|
|
eval `dbus-launch --sh-syntax` && \
|
|
go125 test -v ./...
|