sway/.travis.yml

42 lines
684 B
YAML
Raw Normal View History

2015-09-04 15:22:07 +00:00
sudo: required
2015-12-23 21:23:27 +00:00
language: c
compiler:
- gcc
- clang
env:
- BUILD_TYPE=Release
- BUILD_TYPE=Debug
- BUILD_TYPE=ASAN
2015-09-04 15:22:07 +00:00
arch:
packages:
- cmake
- xorg-server-xwayland
- json-c
2015-09-04 17:38:19 +00:00
- wayland
2015-09-20 23:57:47 +00:00
- xcb-util-image
2015-11-12 15:40:21 +00:00
- pango
- cairo
- gdk-pixbuf2
- wlc-git
- libcap
2017-10-22 14:49:26 +00:00
- meson
2015-09-04 15:22:07 +00:00
script:
2017-10-22 14:45:11 +00:00
- git clone https://github.com/swaywm/wlroots
- cd wlroots
- mkdir build
- cd build
- meson --prefix=/usr ..
- sudo ninja install
- cd ../..
- cmake .
- make
- cmake -DCMAKE_BUILD_TYPE=$BUILD_TYPE .
- make
2015-09-04 15:22:07 +00:00
script:
- "curl -s https://raw.githubusercontent.com/mikkeloscar/arch-travis/master/arch-travis.sh | bash"