mirror of
https://git.sr.ht/~eliasnaur/gio
synced 2026-07-01 23:55:39 +00:00
9ad412ea0b
A simple 'go test -modfile=<path>' won't work properly for the end-to-end tests, since they run 'go build' under the hood as well. To properly propagate the flag, we need to use GOFLAGS. Since -modfile is always relative to the current directory, we can't use it to test many packages at once, nor can we use it via 'go test ./gogio'. While at it, document this distinction in go.local.mod to prevent others getting confused like I did. Signed-off-by: Daniel Martí <mvdan@mvdan.cc>
62 lines
1.6 KiB
YAML
62 lines
1.6 KiB
YAML
image: debian/testing
|
|
packages:
|
|
- curl
|
|
- pkg-config
|
|
- libwayland-dev
|
|
- libx11-dev
|
|
- libx11-xcb-dev
|
|
- libxkbcommon-dev
|
|
- libxkbcommon-x11-dev
|
|
- libgles2-mesa-dev
|
|
- libegl1-mesa-dev
|
|
- libxcursor-dev
|
|
- libxrandr-dev
|
|
- libxinerama-dev
|
|
- libxi-dev
|
|
- libxxf86vm-dev
|
|
- wine
|
|
- xvfb
|
|
- xdotool
|
|
- scrot
|
|
- sway
|
|
- grim
|
|
- wine
|
|
sources:
|
|
- https://git.sr.ht/~eliasnaur/gio
|
|
secrets:
|
|
- 0dd5efdf-400e-4735-8320-98b44844dfd0
|
|
environment:
|
|
GOFLAGS: -mod=readonly
|
|
PATH: /home/build/sdk/go/bin:/usr/bin
|
|
tasks:
|
|
- install_go1_14: |
|
|
mkdir -p /home/build/sdk
|
|
curl https://dl.google.com/go/go1.14.linux-amd64.tar.gz | tar -C /home/build/sdk -xzf -
|
|
- install_chrome: |
|
|
curl -s https://dl.google.com/linux/linux_signing_key.pub | sudo apt-key add -
|
|
sudo sh -c 'echo "deb [arch=amd64] http://dl.google.com/linux/chrome/deb/ stable main" >> /etc/apt/sources.list.d/google.list'
|
|
sudo apt update
|
|
sudo apt install -y google-chrome-stable
|
|
- test_gio: |
|
|
cd gio
|
|
go test -race ./...
|
|
GOOS=windows go test -exec=wine ./...
|
|
GOOS=js GOARCH=wasm go build -o /dev/null ./...
|
|
- test_cmd: |
|
|
cd gio/cmd
|
|
go test ./...
|
|
go test -race ./...
|
|
cd gogio # since we need -modfile to point at the parent directory
|
|
GOFLAGS=-modfile=../go.local.mod go test
|
|
- test_example: |
|
|
cd gio/example
|
|
go test -race ./...
|
|
- check_gofmt: |
|
|
cd gio
|
|
test -z "$(gofmt -s -l .)"
|
|
- annotate: |
|
|
go get git.sr.ht/~sircmpwn/annotatego
|
|
cd gio
|
|
~/go/bin/annotatego -v -T gioui.org... > annotations.json
|
|
../upload-annotations annotations.json eliasnaur gio
|