aboutsummaryrefslogtreecommitdiff
path: root/.build.yml
blob: 06c1426856f3c6ad806757ae16f8385becb01750 (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
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