waybar/.travis.yml

20 lines
498 B
YAML
Raw Normal View History

2018-11-09 12:07:16 +01:00
sudo: false
2018-11-05 11:59:05 +01:00
2018-11-09 12:07:16 +01:00
services:
- docker
env:
- distro: debian
2018-11-09 15:19:17 +01:00
- distro: archlinux
2019-05-07 13:10:57 +02:00
- distro: opensuse
2019-05-07 14:04:45 +02:00
- distro: fedora
2019-05-16 17:20:27 +02:00
- distro: alpine
2018-11-05 11:59:05 +01:00
before_install:
2018-11-09 12:07:16 +01:00
- docker pull alexays/waybar:${distro}
2018-11-05 11:59:05 +01:00
script:
2018-11-09 17:15:19 +01:00
- echo FROM alexays/waybar:${distro} > Dockerfile
- echo ADD . /root >> Dockerfile
- docker build -t waybar .
2019-05-07 13:10:57 +02: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"