aboutsummaryrefslogtreecommitdiff
path: root/.build.yml
blob: 60412f0efc0e49750ffcd741e90060035dbcdcab (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
image: archlinux
packages:
  - meson
  - wayland
  - wayland-protocols
  - mesa
  - libinput
  - libxkbcommon
  - libcap
  - pixman
  - clang
sources:
  - https://git.sr.ht/~sircmpwn/wlroots
tasks:
  - setup: |
      mkdir wlroots/build-{gcc,clang}
      cd wlroots/build-gcc
      CC=gcc meson ..
      cd ../build-clang
      CC=clang meson ..
  - gcc: |
      cd wlroots/build-gcc
      ninja
  - clang: |
      cd wlroots/build-clang
      ninja