c.sexchat/.travis.yml

21 lines
1.1 KiB
YAML
Raw Normal View History

2016-04-04 16:54:20 +02:00
sudo: required
services: docker
before_install:
- docker pull ubuntu:16.04
- docker run --privileged --cidfile=/tmp/cid ubuntu:16.04 /bin/sh -c 'apt-get update && apt-get install -y meson/xenial-backports libcanberra-dev libdbus-glib-1-dev libglib2.0-dev libgtk2.0-dev libluajit-5.1-dev libnotify-dev libpci-dev libperl-dev libproxy-dev libssl-dev python3-dev mono-devel desktop-file-utils'
- docker commit `cat /tmp/cid` hexchat/ubuntu-ci
- rm -f /tmp/cid
install:
- docker run -d --privileged --cidfile=/tmp/cid --volume=${PWD}:/opt/hexchat hexchat/ubuntu-ci /bin/systemd --system
script:
2018-04-03 22:09:25 +02:00
- docker exec `cat /tmp/cid` /bin/sh -c 'meson /opt/hexchat /opt/hexchat-build -Dwith-text=true -Dwith-theme-manager=true && ninja -C /opt/hexchat-build install && ninja -C /opt/hexchat-build test'
after_script:
- docker kill `cat /tmp/cid`
2013-06-13 21:08:35 +02:00
notifications:
2013-06-13 21:20:58 +02:00
irc:
channels: "chat.freenode.net#hexchat-devel"
2014-12-06 23:28:41 +01:00
template: "Build %{build_url} (%{commit} in %{branch}) by %{author}: %{message}"
2013-06-13 21:08:35 +02:00
on_success: change
matrix:
fast_finish: true