aboutsummaryrefslogtreecommitdiffstats
path: root/.build.yml
diff options
context:
space:
mode:
authorLibravatar Tony Crisci <tony@dubstepdish.com>2017-12-01 05:43:08 -0500
committerLibravatar Tony Crisci <tony@dubstepdish.com>2017-12-01 06:20:40 -0500
commit3546412fc9fb9a51b4316070eff4991c14594127 (patch)
treedb3d94757ec043542bd4ba9d45c474f0a6a5b657 /.build.yml
parentmeson dont warn on unused param (diff)
downloadsway-3546412fc9fb9a51b4316070eff4991c14594127.tar.gz
sway-3546412fc9fb9a51b4316070eff4991c14594127.tar.zst
sway-3546412fc9fb9a51b4316070eff4991c14594127.zip
update travis
Diffstat (limited to '.build.yml')
-rw-r--r--.build.yml21
1 files changed, 9 insertions, 12 deletions
diff --git a/.build.yml b/.build.yml
index 3717d699..a2f855e9 100644
--- a/.build.yml
+++ b/.build.yml
@@ -1,7 +1,7 @@
1# vim: ft=yaml ts=2 sw=2 et : 1# vim: ft=yaml ts=2 sw=2 et :
2image: archlinux 2image: archlinux
3packages: 3packages:
4 - cmake 4 - meson
5 - wlc-git 5 - wlc-git
6 - xorg-server-xwayland 6 - xorg-server-xwayland
7 - xcb-util-image 7 - xcb-util-image
@@ -9,25 +9,22 @@ packages:
9 - pango 9 - pango
10 - cairo 10 - cairo
11 - wayland 11 - wayland
12 - wayland-protocols
12 - gdk-pixbuf2 13 - gdk-pixbuf2
13 - meson 14 - libinput
15 - libxkbcommon
14sources: 16sources:
15 - https://git.sr.ht/~sircmpwn/sway 17 - https://git.sr.ht/~sircmpwn/sway
16 - https://git.sr.ht/~sircmpwn/wlroots 18 - https://git.sr.ht/~sircmpwn/wlroots
17tasks: 19tasks:
18 - wlroots: | 20 - wlroots: |
19 cd wlroots 21 cd wlroots
20 mkdir build 22 meson --prefix=/usr build
21 cd build 23 ninja -C build
22 meson --prefix=/usr .. 24 sudo ninja -C build install
23 ninja
24 sudo ninja install
25 - setup: | 25 - setup: |
26 cd sway 26 cd sway
27 mkdir build 27 meson build
28 cd build
29 cmake ..
30 - build: | 28 - build: |
31 cd sway 29 cd sway
32 cd build 30 ninja -C build
33 make