Vendor gotk3 library to ensure consistent GTK3 bindings across environments and simplify dependency management. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
60 lines
1.8 KiB
YAML
60 lines
1.8 KiB
YAML
language: go
|
|
|
|
go_import_path: github.com/gotk3/gotk3
|
|
|
|
env:
|
|
- GOARCH=amd64
|
|
|
|
jobs:
|
|
include:
|
|
# Testing on xenial, gtk 3.18.9 (gdk has same version), glib 2.48.0 (gio has same version), gdk-pixbuf 2.32.2
|
|
- os: linux
|
|
dist: xenial
|
|
go: "1.13"
|
|
|
|
# Testing on bionic, gtk 3.22.30 (gdk has same version), glib 2.56.1 (gio has same version), gdk-pixbuf 2.36.11
|
|
- os: linux
|
|
dist: bionic
|
|
go: "1.14"
|
|
|
|
# Testing on focal, gtk 3.24.14 (gdk has same version), glib 2.64.1 (gio has same version), gdk-pixbuf 2.40.0
|
|
# Majority of the go versions here for compatibility checking
|
|
- os: linux
|
|
dist: focal
|
|
go: "1.12"
|
|
- os: linux
|
|
dist: focal
|
|
go: "1.13"
|
|
- os: linux
|
|
dist: focal
|
|
go: "1.14"
|
|
- os: linux
|
|
dist: focal
|
|
go: "1.15"
|
|
- os: linux
|
|
dist: focal
|
|
go: tip
|
|
|
|
addons:
|
|
apt:
|
|
packages:
|
|
- gtk+3.0
|
|
- libgtk-3-dev
|
|
- xvfb
|
|
|
|
before_install:
|
|
- "export DISPLAY=:99.0"
|
|
- sudo /usr/bin/Xvfb $DISPLAY &> /dev/null &
|
|
- "export GTK_VERSION=$(pkg-config --modversion gtk+-3.0 | tr . _| cut -d '_' -f 1-2)"
|
|
- "export Glib_VERSION=$(pkg-config --modversion glib-2.0 | tr . _| cut -d '_' -f 1-2)"
|
|
- "export GDK_Pixbuf_VERSION=$(pkg-config --modversion gdk-pixbuf-2.0 | tr . _| cut -d '_' -f 1-2)"
|
|
- "export Cairo_VERSION=$(pkg-config --modversion cairo)"
|
|
- "export Pango_VERSION=$(pkg-config --modversion pango)"
|
|
- echo "GTK/GDK version ${GTK_VERSION} Glib/Gio version ${Glib_VERSION} Gdk-Pixbuf version ${GDK_Pixbuf_VERSION} (Cairo ${Cairo_VERSION}, Pango ${Pango_VERSION})"
|
|
|
|
install:
|
|
- go get -t -tags "gtk_${GTK_VERSION} glib_${Glib_VERSION} gdk_pixbuf_${GDK_Pixbuf_VERSION}" ./...
|
|
|
|
script:
|
|
- go test -tags "gtk_${GTK_VERSION} glib_${Glib_VERSION} gdk_pixbuf_${GDK_Pixbuf_VERSION}" ./...
|