From 0851c924ecae22ec35452fde1fdb6d5f446d838b Mon Sep 17 00:00:00 2001 From: Peter Eisentraut Date: Tue, 19 Dec 2017 16:54:24 -0500 Subject: [PATCH] Travis CI: Add test for building from dist tarball Check that the distribution tarball can actually be built from, in case it's missing a file. Also check `make install` while we're here. --- .travis.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index f46e8d2..eca4b4b 100644 --- a/.travis.yml +++ b/.travis.yml @@ -9,6 +9,9 @@ compiler: - gcc script: - ./autogen.sh - - ./configure --enable-cassert --enable-werror --with-pam + - ./configure --prefix=$HOME/install --enable-cassert --enable-werror --with-pam - make + - make install - make dist + - tar -x -f pgbouncer-*.tar.gz + - cd pgbouncer-* && ./configure --prefix=$HOME/install2 --enable-cassert --enable-werror --with-pam && make && make install -- 2.40.0