mirror of
https://github.com/yshui/picom.git
synced 2024-10-27 05:24:17 -04:00
23 lines
419 B
YAML
23 lines
419 B
YAML
image: openbsd/latest
|
|
packages:
|
|
- libev
|
|
- xcb
|
|
- meson
|
|
- pkgconf
|
|
- cmake
|
|
- uthash
|
|
- libconfig
|
|
- dbus
|
|
- pcre2
|
|
sources:
|
|
- https://github.com/yshui/picom
|
|
tasks:
|
|
- setup: |
|
|
cd picom
|
|
CPPFLAGS="-I/usr/local/include" LDFLAGS="-L/usr/local/lib" meson setup -Dunittest=true --werror build
|
|
- build: |
|
|
cd picom
|
|
ninja -C build
|
|
- unittest: |
|
|
cd picom
|
|
ninja -C build test
|