mirror of
https://github.com/yshui/picom.git
synced 2025-04-14 17:53:25 -04:00
31 lines
710 B
YAML
31 lines
710 B
YAML
name: openbsd
|
|
on: push
|
|
|
|
jobs:
|
|
check:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
with:
|
|
fetch-depth: 1
|
|
- uses: actions/cache@v4
|
|
with:
|
|
path: |
|
|
*.qcow2.xz
|
|
*.qcow2"
|
|
key: vmactions-openbsd
|
|
- uses: vmactions/openbsd-vm@v1
|
|
with:
|
|
usesh: true
|
|
prepare: |
|
|
pkg_add libev xcb meson pkgconf cmake uthash libconfig dbus pcre2
|
|
run: |
|
|
CPPFLAGS="-I/usr/local/include" LDFLAGS="-L/usr/local/lib" meson setup -Dunittest=true --werror build
|
|
ninja -C build
|
|
ninja -C build test
|
|
- run: |
|
|
for i in *.qcow2.xz; do
|
|
echo > $i
|
|
done
|
|
ls -l
|
|
|