File tree Expand file tree Collapse file tree 3 files changed +5
-1
lines changed Expand file tree Collapse file tree 3 files changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ dist: trusty
4
4
5
5
before_script :
6
6
- ./.travis/make_postgres.sh
7
- - psql -U postgres -c "create user test with password 'test';"
7
+ - psql -U postgres -c "create user test with password 'test'; select version(); "
8
8
- psql -c 'create database test owner test;' -U postgres
9
9
- echo "MAVEN_OPTS='-Xmx1g -Dgpg.skip=true'" > ~/.mavenrc
10
10
- psql test -c 'CREATE EXTENSION hstore;' -U postgres
Original file line number Diff line number Diff line change 1
1
#! /usr/bin/env bash
2
2
set -x -e
3
3
4
+ sudo service postgresql stop
5
+
4
6
PREFIX=$HOME /pg_head
5
7
6
8
./configure --prefix=$PREFIX
Original file line number Diff line number Diff line change @@ -3,6 +3,8 @@ set -x -e
3
3
4
4
git clone --depth=1 https://github.com/pgjdbc/pgjdbc.git
5
5
6
+ git log -1
7
+
6
8
cd pgjdbc
7
9
8
10
mvn clean package -B -V
You can’t perform that action at this time.
0 commit comments