Skip to content

Commit 6646d16

Browse files
author
phasenraum2010
committed
fixed #43
1 parent e5d7b24 commit 6646d16

File tree

3 files changed

+10
-8
lines changed

3 files changed

+10
-8
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,5 +35,6 @@ buildNumber.properties
3535
/.nb-gradle/
3636

3737
### Application ####
38+
x.txt
3839

3940

.travis.yml

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -23,13 +23,5 @@ before_install:
2323
- sudo /etc/init.d/postgresql start 10
2424
before_script:
2525
- sleep 15
26-
- psql -U postgres -c "CREATE USER travistest WITH PASSWORD 'travistestpwd' LOGIN SUPERUSER INHERIT CREATEDB CREATEROLE NOREPLICATION;"
27-
- psql -U postgres -c 'GRANT pg_signal_backend, postgres TO travistest WITH ADMIN OPTION;'
28-
- psql -U postgres -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;"
29-
- psql -U postgres -c '\l'
30-
- psql -U postgres -c '\dg'
31-
- psql -U postgres -c '\dn'
32-
- psql -U postgres -c 'select * from version();'
33-
- psql -U travistest -c 'select * from version();'
3426
sudo: false
3527
script: ./mvnw clean install jbake:generate site site:deploy -Ptravis -B -V

x.txt

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
- psql -c 'create database travis_ci_test;' -U postgres
2+
- psql -U postgres -c "CREATE USER travistest WITH PASSWORD 'travistestpwd' LOGIN SUPERUSER INHERIT CREATEDB CREATEROLE NOREPLICATION;"
3+
- psql -U postgres -c 'GRANT pg_signal_backend, postgres TO travistest WITH ADMIN OPTION;'
4+
- psql -U postgres -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;"
5+
- psql -U postgres -c '\l'
6+
- psql -U postgres -c '\dg'
7+
- psql -U postgres -c '\dn'
8+
- psql -U postgres -c 'select * from version();'
9+
- psql -U travistest -c 'select * from version();'

0 commit comments

Comments
 (0)