aboutsummaryrefslogtreecommitdiff
path: root/.builds/alpine.yml
blob: 72497714581977ad25fac84927d238f688b710fd (plain) (blame)
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
image: alpine/edge
packages:
  - eudev-dev
  - libinput-dev
  - libseat-dev
  - mesa-dev
  - libffi-dev
  - expat-dev
  - hwdata
  - libxkbcommon-dev
  - xcb-util-image-dev
  - xcb-util-renderutil-dev
  - xcb-util-wm-dev
  - pixman-dev
  - libevdev-dev
  - wayland-protocols
  - xwayland
  - meson
  - scdoc
  - tar
  - wget
  - xz
sources:
  - https://github.com/riverwm/river
  - https://gitlab.freedesktop.org/wayland/wayland.git
  - https://gitlab.freedesktop.org/wlroots/wlroots.git
tasks:
  - install_deps: |
      cd wayland
      git checkout 1.21.0
      meson setup build -Ddocumentation=false -Dtests=false --prefix /usr
      sudo ninja -C build install
      cd ..

      cd wlroots
      git checkout 0.16.0
      meson setup build --auto-features=enabled -Drenderers=gles2 -Dexamples=false \
            -Dwerror=false -Db_ndebug=false -Dxcb-errors=disabled --prefix /usr
      sudo ninja -C build/ install
      cd ..

      wget -nv https://ziglang.org/download/0.10.0/zig-linux-x86_64-0.10.0.tar.xz
      # Remove a lot of useless lines from tar output.
      tar -xvf zig-linux-x86_64-0.10.0.tar.xz 1>/dev/null
      sudo mv zig-linux-x86_64-0.10.0/zig /usr/bin/
      sudo mv zig-linux-x86_64-0.10.0/lib /usr/lib/zig
  - build: |
      cd river
      zig build
  - build_xwayland: |
      cd river
      zig build -Dxwayland
  - xwayland_test: |
      cd river
      zig build -Dxwayland test
  - fmt: |
      cd river
      zig fmt --check river/
      zig fmt --check riverctl/
      zig fmt --check rivertile/
      zig fmt --check build.zig