mirror of
https://git.sr.ht/~eliasnaur/gio
synced 2026-07-03 08:25:34 +00:00
4f3f0fa50c
Signed-off-by: Elias Naur <mail@eliasnaur.com>
26 lines
599 B
YAML
26 lines
599 B
YAML
# SPDX-License-Identifier: Unlicense OR MIT
|
|
image: freebsd/11.x
|
|
packages:
|
|
- libX11
|
|
- libxkbcommon
|
|
- libXcursor
|
|
- libXfixes
|
|
- wayland
|
|
- mesa-libs
|
|
- xorg-vfbserver
|
|
sources:
|
|
- https://git.sr.ht/~eliasnaur/gio
|
|
environment:
|
|
PATH: /home/build/sdk/go/bin:/bin:/usr/local/bin:/usr/bin
|
|
tasks:
|
|
- install_go1_14: |
|
|
mkdir -p /home/build/sdk
|
|
curl https://dl.google.com/go/go1.14.freebsd-amd64.tar.gz | tar -C /home/build/sdk -xzf -
|
|
- test_gio: |
|
|
export EGL_PLATFORM=surfaceless # for headless tests
|
|
cd gio
|
|
go test -v ./...
|
|
- test_cmd: |
|
|
cd gio/cmd
|
|
go test -v ./...
|