mirror of
https://github.com/swaywm/sway.git
synced 2024-11-04 23:43:14 +00:00
56733bc6fe
New warnings can be hard to notice in CI, since CI will just pass in that case. Meson sometimes uses warnings for important mistakes, e.g. invalid option. Let's turn warnings into errors so that we can spot these more easily.
48 lines
1 KiB
YAML
48 lines
1 KiB
YAML
image: alpine/edge
|
|
packages:
|
|
- cairo-dev
|
|
- eudev-dev
|
|
- gdk-pixbuf-dev
|
|
- json-c-dev
|
|
- libevdev-dev
|
|
- libinput-dev
|
|
- libseat-dev
|
|
- libxcb-dev
|
|
- libxkbcommon-dev
|
|
- mesa-dev
|
|
- meson
|
|
- pango-dev
|
|
- pixman-dev
|
|
- scdoc
|
|
- wayland-dev
|
|
- wayland-protocols
|
|
- xcb-util-image-dev
|
|
- xcb-util-wm-dev
|
|
- xwayland
|
|
sources:
|
|
- https://github.com/swaywm/sway
|
|
- https://github.com/swaywm/wlroots
|
|
tasks:
|
|
- wlroots: |
|
|
cd wlroots
|
|
meson --prefix=/usr build -Dexamples=false
|
|
ninja -C build
|
|
sudo ninja -C build install
|
|
- setup: |
|
|
cd sway
|
|
meson build --fatal-meson-warnings -Dauto_features=enabled -Dtray=disabled
|
|
- build: |
|
|
cd sway
|
|
ninja -C build
|
|
- build-no-xwayland: |
|
|
cd sway
|
|
meson configure build -Dxwayland=disabled
|
|
ninja -C build
|
|
- build-static: |
|
|
cd sway
|
|
mkdir subprojects
|
|
ln -s ../../wlroots subprojects/wlroots
|
|
rm -rf build
|
|
meson build --fatal-meson-warnings --default-library=static --force-fallback-for=wlroots
|
|
ninja -C build
|