Files
gio/.builds/freebsd.yml
T
Elias Naur e16712321f .builds: use gotip on freebsd builder
Signed-off-by: Elias Naur <mail@eliasnaur.com>
2019-11-08 12:45:25 +01:00

28 lines
553 B
YAML

image: freebsd/latest
packages:
- libX11
- libxkbcommon
- wayland
- mesa-libs
- xorg-vfbserver
- go
sources:
- https://git.sr.ht/~eliasnaur/gio
environment:
PATH: /home/build/bin:/bin:/usr/local/bin:/usr/bin
tasks:
- install_gotip: |
go get golang.org/dl/gotip
/home/build/go/bin/gotip download
mkdir /home/build/bin
ln -s /home/build/go/bin/gotip /home/build/bin/go
- test_gio: |
cd gio
go test ./...
- test_example: |
cd gio/example
go test ./...
- test_cmd: |
cd gio/cmd
go test ./...