app/internal: add FreeBSD support

Signed-off-by: Elias Naur <mail@eliasnaur.com>
This commit is contained in:
Elias Naur
2019-10-30 11:06:26 +00:00
parent 1cc1fb1c72
commit 3425b25ecc
17 changed files with 59 additions and 23 deletions
+25
View File
@@ -0,0 +1,25 @@
image: freebsd/latest
packages:
- libX11
- libxkbcommon
- wayland
- mesa-libs
- xorg-vfbserver
- go
sources:
- https://git.sr.ht/~eliasnaur/gio
environment:
PATH: /bin:/usr/local/bin:/usr/bin
tasks:
- test_gio: |
cd gio
go test ./...
- test_example: |
cd gio/example
go test ./...
- test_cmd: |
cd gio/cmd
go test ./...
- check_gofmt: |
cd gio
test -z $(gofmt -s -l .)