8000 Print versions · vlsi/postgres@dc860b4 · GitHub
[go: up one dir, main page]

Skip to content

Commit dc860b4

Browse files
committed
Print versions
1 parent 470b15f commit dc860b4

File tree

3 files changed

+5
-1
lines changed

3 files changed

+5
-1
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ dist: trusty
44

55
before_script:
66
- ./.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();"
88
- psql -c 'create database test owner test;' -U postgres
99
- echo "MAVEN_OPTS='-Xmx1g -Dgpg.skip=true'" > ~/.mavenrc
1010
- psql test -c 'CREATE EXTENSION hstore;' -U postgres

.travis/make_postgres.sh

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
#!/usr/bin/env bash
22
set -x -e
33

4+
sudo service postgresql stop
5+
46
PREFIX=$HOME/pg_head
57

68
./configure --prefix=$PREFIX

.travis/pgjdbc_check.sh

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@ set -x -e
33

44
git clone --depth=1 https://github.com/pgjdbc/pgjdbc.git
55

6+
git log -1
7+
68
cd pgjdbc
79

810
mvn clean package -B -V

0 commit comments

Comments
 (0)
0