mirror of
https://git.sr.ht/~eliasnaur/gio
synced 2026-07-01 07:35:40 +00:00
4b7387369b
Signed-off-by: Elias Naur <mail@eliasnaur.com>
24 lines
516 B
YAML
24 lines
516 B
YAML
image: openbsd/latest
|
|
packages:
|
|
- libxkbcommon
|
|
- go
|
|
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.src.tar.gz | tar -C /home/build/sdk -xzf -
|
|
cd /home/build/sdk/go/src
|
|
./make.bash
|
|
- test_gio: |
|
|
cd gio
|
|
go test ./...
|
|
- test_cmd: |
|
|
cd gio/cmd
|
|
go test ./...
|
|
- test_example: |
|
|
cd gio/example
|
|
go test ./...
|