-
Notifications
You must be signed in to change notification settings - Fork 1
/
.travis.yml
43 lines (37 loc) · 961 Bytes
/
.travis.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
language: c
sudo: false
os: linux
notifications:
email: false
addons:
apt:
sources:
- ubuntu-toolchain-r-test
- llvm-toolchain-trusty-5.0
packages:
- libgettextpo-dev
- libqrencode-dev
- libcrack2-dev
- libldap2-dev
- libidn11-dev
- libpcre3-dev
- libperl-dev
- libssl-dev
- nettle-dev
- clang-5.0
- gcc-5
compiler:
- clang-5.0
- gcc-5
env:
- OPTIONAL_CONF_ARGS=""
- OPTIONAL_CONF_ARGS="--with-perl"
- OPTIONAL_CONF_ARGS="--enable-contrib"
script:
- ./configure --prefix=/home/travis/atheme-install/ --enable-nls --enable-reproducible-builds --with-crypt --with-cracklib --with-ldap --with-libidn --without-mbedtls --with-nettle --with-openssl --with-pcre --with-qrencode ${OPTIONAL_CONF_ARGS}
- make
- make install
- /home/travis/atheme-install/bin/atheme-services -d -T
matrix:
allow_failures:
- env: OPTIONAL_CONF_ARGS="--enable-contrib"