Waybar/.travis.yml

19 lines
477 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-05-07 11:10:57 +00:00
- distro: opensuse
2019-05-07 12:04:45 +00:00
- distro: fedora
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 .
2019-05-07 11:10:57 +00:00
- docker run waybar /bin/sh -c "cd /root && git clone --depth=1 https://github.com/swaywm/wlroots subprojects/wlroots && meson build && ninja -C build"