mirror of
https://github.com/cage-kiosk/cage.git
synced 2025-10-29 05:40:19 -04:00
30 lines
834 B
YAML
30 lines
834 B
YAML
image: archlinux
|
|
packages:
|
|
- clang
|
|
- meson
|
|
- libinput
|
|
- libxkbcommon
|
|
- wayland
|
|
- wayland-protocols
|
|
- xorg-server-xwayland
|
|
sources:
|
|
- https://github.com/swaywm/wlroots
|
|
- https://github.com/Hjdskes/cage
|
|
tasks:
|
|
# Install wlroots, which is required by Cage. Note that we compile a tagged
|
|
# version, instead of master, to avoid any breaking changes in wlroots.
|
|
- wlroots: |
|
|
cd wlroots
|
|
# This corresponds to the tag of 0.6.0
|
|
git checkout c0305f4f864543f8c3fea6f302e91c9b1d3396f3
|
|
meson --prefix=/usr build -Drootston=false -Dexamples=false
|
|
ninja -C build
|
|
sudo ninja -C build install
|
|
- build: |
|
|
cd cage
|
|
meson build -Dxwayland=true
|
|
ninja -C build
|
|
- scan-build: |
|
|
cd cage
|
|
CC=clang meson build -Dxwayland=true
|
|
CC=clang ninja -C build scan-build
|