wlroots/.build.yml

26 lines
432 B
YAML
Raw Normal View History

2017-08-04 20:51:44 +00:00
image: archlinux
packages:
2017-08-08 22:02:32 +00:00
- meson
2017-08-04 20:51:44 +00:00
- wayland
- wayland-protocols
- mesa
- libinput
- libxkbcommon
- libcap
- clang
sources:
- https://git.sr.ht/~sircmpwn/wlroots
tasks:
- setup: |
mkdir wlroots/build-{gcc,clang}
cd wlroots/build-gcc
2017-08-08 22:02:32 +00:00
meson ..
2017-08-04 20:51:44 +00:00
cd ../build-clang
2017-08-08 22:02:32 +00:00
CC=clang meson ..
2017-08-04 20:51:44 +00:00
- gcc: |
cd wlroots/build-gcc
2017-08-08 22:02:32 +00:00
ninja
2017-08-04 20:51:44 +00:00
- clang: |
cd wlroots/build-clang
2017-08-08 22:02:32 +00:00
ninja