Waybar/.travis.yml

18 lines
448 B
YAML
Raw Normal View History

2018-11-09 11:07:16 +00:00
sudo: false
2018-11-05 10:59:05 +00:00
2018-11-09 11:07:16 +00:00
services:
- docker
env:
- distro: debian
2018-11-09 14:19:17 +00:00
- distro: archlinux
2019-02-18 11:33:40 +00:00
# - distro: opensuse
2018-11-05 10:59:05 +00:00
before_install:
2018-11-09 11:07:16 +00:00
- docker pull alexays/waybar:${distro}
2018-11-05 10:59:05 +00:00
script:
2018-11-09 16:15:19 +00:00
- echo FROM alexays/waybar:${distro} > Dockerfile
- echo ADD . /root >> Dockerfile
- docker build -t waybar .
- docker run waybar /bin/sh -c "cd /root && git clone https://github.com/swaywm/wlroots subprojects/wlroots && meson build && ninja -C build"