]> jfr.im git - irc/DALnet/bahamut.git/blob - .travis.yml
Saving this for once all servers are upgraded
[irc/DALnet/bahamut.git] / .travis.yml
1 # IRC - Internet Relay Chat, .travis.yml
2 # Copyright (C) 1990 Jarkko Oikarinen and
3 # University of Oulu, Computing Center
4 #
5 # See file AUTHORS in IRC package for additional names of
6 # the programmers.
7 #
8 # This program is free software; you can redistribute it and/or modify
9 # it under the terms of the GNU General Public License as published by
10 # the Free Software Foundation; either version 1, or (at your option)
11 # any later version.
12 #
13 # This program is distributed in the hope that it will be useful,
14 # but WITHOUT ANY WARRANTY; without even the implied warranty of
15 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 # GNU General Public License for more details.
17 #
18 # You should have received a copy of the GNU General Public License
19 # along with this program; if not, write to the Free Software
20 # Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
21
22 language: c
23
24 dist: trusty
25 sudo: required
26
27 compiler:
28 - gcc
29 - clang
30
31 os:
32 - linux
33
34 addons:
35 apt:
36 packages:
37 - autoconf
38 - automake
39 - libtool
40 - check
41 - libssl-dev
42 - shtool
43
44 before_script: echo "automake --add-missing -f; autoreconf -vfi; exit 0" > autogen.sh && chmod +x autogen.sh
45 script:
46 - ./autogen.sh
47 - ./configure
48 - make
49
50 install: true
51
52 notifications:
53 irc:
54 channels:
55 - "irc.dal.net#bahamut"
56 template:
57 - "bahamut-build #%{build_number} (%{commit} by %{author}): %{message}"
58 - "See detail at %{build_url}"
59 email: false