Add .build.yml for builds.sr.ht

master
Drew DeVault 7 years ago
parent 7c393d5143
commit ce886c0353

@ -0,0 +1,25 @@
image: archlinux
packages:
- cmake
- 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
cmake ..
cd ../build-clang
CC=clang cmake ..
- gcc: |
cd wlroots/build-gcc
make
- clang: |
cd wlroots/build-clang
make
Loading…
Cancel
Save