File tree Expand file tree Collapse file tree 1 file changed +8
-7
lines changed Expand file tree Collapse file tree 1 file changed +8
-7
lines changed Original file line number Diff line number Diff 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
1114services :
1215 - postgresql
1316 - redis-server
1417 - neo4j
18+ - rabbitmq
1519before_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
2024before_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
2933sudo : false
3034script : ./mvnw clean install jbake:generate site site:deploy -Ptravis -B -V
31-
32-
33-
You can’t perform that action at this time.
0 commit comments