forked from hexchat/hexchat
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Quick rundown of benefits: - Much faster: - Autotools (with autogen): 22 seconds - Meson: 7 seconds - Meson (with ccache): 2 seconds - Simpler: - ~1000 lines smaller - Single simple language - Potentially better Windows (Visual Studio) support What is not done: - Complete Windows support - OSX support (easy) Closes hexchat#2013 Closes hexchat#1937 Closes hexchat#1803
- Loading branch information
Showing
71 changed files
with
979 additions
and
2,097 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,36 +1,20 @@ | ||
sudo: required | ||
dist: trusty | ||
language: c | ||
cache: apt | ||
compiler: clang | ||
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: | ||
- ./autogen.sh --enable-textfe --with-theme-manager --enable-static-analysis | ||
- make V=1 -j$(nproc) | ||
- 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' | ||
after_script: | ||
- docker kill `cat /tmp/cid` | ||
notifications: | ||
irc: | ||
channels: "chat.freenode.net#hexchat-devel" | ||
template: "Build %{build_url} (%{commit} in %{branch}) by %{author}: %{message}" | ||
on_success: change | ||
matrix: | ||
fast_finish: true | ||
addons: | ||
apt: | ||
packages: | ||
- automake | ||
- autoconf-archive | ||
- imagemagick | ||
- intltool | ||
- 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 | ||
- libtool | ||
- monodevelop | ||
- mono-devel | ||
- python-dev |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.