File tree Expand file tree Collapse file tree 3 files changed +10
-8
lines changed Expand file tree Collapse file tree 3 files changed +10
-8
lines changed Original file line number Diff line number Diff line change @@ -35,5 +35,6 @@ buildNumber.properties
3535/.nb-gradle /
3636
3737# ## Application ####
38+ x.txt
3839
3940
Original file line number Diff line number Diff line change @@ -23,13 +23,5 @@ before_install:
2323 - sudo /etc/init.d/postgresql start 10
2424before_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();'
3426sudo : false
3527script : ./mvnw clean install jbake:generate site site:deploy -Ptravis -B -V
Original file line number Diff line number Diff line change 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();'
You can’t perform that action at this time.
0 commit comments