mirror of
https://git.sr.ht/~eliasnaur/gio
synced 2026-07-01 07:35:40 +00:00
e1fbb189e5
It's currently failing, and upgrading it may fix it. While here, track lates FreeBSD to avoid upgrade toil. Signed-off-by: Elias Naur <mail@eliasnaur.com>
23 lines
503 B
YAML
23 lines
503 B
YAML
# SPDX-License-Identifier: Unlicense OR MIT
|
|
image: freebsd/latest
|
|
packages:
|
|
- libX11
|
|
- libxkbcommon
|
|
- libXcursor
|
|
- libXfixes
|
|
- vulkan-headers
|
|
- 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_go: |
|
|
mkdir -p /home/build/sdk
|
|
curl https://dl.google.com/go/go1.22.2.freebsd-amd64.tar.gz | tar -C /home/build/sdk -xzf -
|
|
- test_gio: |
|
|
cd gio
|
|
go test ./...
|