Skip to content

Commit 7a6cd6d

Browse files
author
phasenraum2010
committed
fixed #43
1 parent aec5944 commit 7a6cd6d

File tree

1 file changed

+8
-7
lines changed

1 file changed

+8
-7
lines changed

.travis.yml

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -8,26 +8,27 @@ addons:
88
- oracle-java8-installer
99
- postgresql-10
1010
- postgresql-client-10
11+
env:
12+
global:
13+
- PGPORT=5433
1114
services:
1215
- postgresql
1316
- redis-server
1417
- neo4j
18+
- rabbitmq
1519
before_install:
1620
- sudo apt-get update
1721
- sudo apt-get install language-pack-de
1822
- sudo /etc/init.d/postgresql stop
1923
- sudo /etc/init.d/postgresql start 10
2024
before_script:
21-
- psql -c "CREATE USER kandidatentest WITH PASSWORD 'kandidatentestpwd' LOGIN SUPERUSER INHERIT CREATEDB CREATEROLE NOREPLICATION;" -U postgres
22-
- psql -c 'GRANT pg_signal_backend, postgres TO kandidatentest WITH ADMIN OPTION;' -U postgres
23-
- psql -c "CREATE DATABASE kandidatentest WITH OWNER = kandidatentest TEMPLATE = template0 ENCODING = 'UTF8' LC_COLLATE = 'de_DE.UTF-8' LC_CTYPE = 'de_DE.UTF-8' CONNECTION LIMIT = -1;" -U postgres
25+
- psql -c "CREATE USER travistest WITH PASSWORD 'travistestpwd' LOGIN SUPERUSER INHERIT CREATEDB CREATEROLE NOREPLICATION;" -U postgres
26+
- psql -c 'GRANT pg_signal_backend, postgres TO travistest WITH ADMIN OPTION;' -U postgres
27+
- psql -c "CREATE DATABASE travistest WITH OWNER = travistest TEMPLATE = template0 ENCODING = 'UTF8' LC_COLLATE = 'de_DE.UTF-8' LC_CTYPE = 'de_DE.UTF-8' CONNECTION LIMIT = -1;" -U postgres
2428
- psql -c '\l' -U postgres
2529
- psql -c '\dg' -U postgres
2630
- psql -c '\dn' -U postgres
2731
- psql -c 'select * from version();' -U postgres
28-
- psql -c 'select * from version();' -U kandidatentest
32+
- psql -c 'select * from version();' -U travistest
2933
sudo: false
3034
script: ./mvnw clean install jbake:generate site site:deploy -Ptravis -B -V
31-
32-
33-

0 commit comments

Comments
 (0)