mirror of
https://github.com/yshui/picom.git
synced 2024-11-18 13:55:36 -05:00
c8195eff8f
It's sad but this decision is purely practical, as recently we saw a decrease in the reliability of sr.ht. Signed-off-by: Yuxuan Shui <yshuiv7@gmail.com>
21 lines
547 B
YAML
21 lines
547 B
YAML
name: openbsd
|
|
on: push
|
|
|
|
jobs:
|
|
check:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
with:
|
|
fetch-depth: 1
|
|
- uses: cross-platform-actions/action@v0.24.0
|
|
with:
|
|
operating_system: openbsd
|
|
version: '7.5'
|
|
shell: bash
|
|
run: |
|
|
sudo pkg_add libev xcb meson pkgconf cmake uthash libconfig dbus pcre2
|
|
CPPFLAGS="-I/usr/local/include" LDFLAGS="-L/usr/local/lib" meson setup -Dunittest=true --werror build
|
|
ninja -C build
|
|
ninja -C build test
|
|
|