1
1
mirror of https://github.com/swaywm/sway synced 2025-02-21 12:21:24 +01:00
sway/.builds/alpine.yml
Pedro Côrte-Real 075845ceb2 Use wlroots 0.12.0 for v1.5 CI
While inside the v1.5 branch make sure we stay on wlroots 0.12.0 so that
the build doesn't fail.
2021-05-19 11:48:08 +02:00

39 lines
770 B
YAML

image: alpine/edge
packages:
- cairo-dev
- eudev-dev
- gdk-pixbuf-dev
- json-c-dev
- libevdev-dev
- libinput-dev
- libxcb-dev
- libxkbcommon-dev
- mesa-dev
- meson
- pango-dev
- pixman-dev
- scdoc
- wayland-dev
- wayland-protocols
- xcb-util-image-dev
- xwayland
sources:
- https://github.com/swaywm/sway
- https://github.com/swaywm/wlroots#0.12.0
tasks:
- wlroots: |
cd wlroots
meson --prefix=/usr build -Dexamples=false
ninja -C build
sudo ninja -C build install
- setup: |
cd sway
meson build -Dauto_features=enabled -Dtray=disabled
- build: |
cd sway
ninja -C build
- build-no-xwayland: |
cd sway
meson configure build -Dxwayland=disabled
ninja -C build