forked from pgbouncer/pgbouncer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
41 lines (41 loc) · 1.04 KB
/
.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
language: c
addons:
apt:
packages:
- debhelper
- devscripts
- fakeroot
- libc-ares-dev
- libevent-dev
- libudns-dev
- lintian
- python-docutils
compiler:
- clang
- gcc
env:
matrix:
- configure_args=''
- configure_args='--disable-evdns --without-cares --without-udns'
- configure_args='--enable-evdns --without-cares --without-udns'
- configure_args='--disable-evdns --with-cares --without-udns --disable-werror'
- configure_args='--disable-evdns --without-cares --with-udns --disable-werror'
- configure_args='--with-pam'
- configure_args='--with-openssl'
- configure_args='--without-openssl'
script: |
set -e
./autogen.sh
./configure --prefix=$HOME/install --enable-cassert --enable-werror --without-cares $configure_args
make
make install
make dist
tar -x -f pgbouncer-*.tar.gz
cd pgbouncer-*
./configure --prefix=$HOME/install2 --enable-werror --without-cares $configure_args
make
make install
cd ..
make distclean
./configure
make deb