reflect upgrade to postgres 12

This commit is contained in:
Leo McArdle 2020-06-23 11:54:59 +01:00
Родитель 633ca0b1b1
Коммит 9712ebb538
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 8262833620A64C3F
1 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -23,11 +23,11 @@ echo "travis_fold:start:discourse_setup"
redis-server --dir tmp/test_data/redis > /dev/null &
echo "Starting postgres"
/usr/lib/postgresql/10/bin/initdb -D tmp/test_data/pg > /dev/null
/usr/lib/postgresql/12/bin/initdb -D tmp/test_data/pg > /dev/null
echo fsync = off >> tmp/test_data/pg/postgresql.conf
echo full_page_writes = off >> tmp/test_data/pg/postgresql.conf
echo shared_buffers = 500MB >> tmp/test_data/pg/postgresql.conf
/usr/lib/postgresql/10/bin/postmaster -D tmp/test_data/pg > /dev/null &
/usr/lib/postgresql/12/bin/postmaster -D tmp/test_data/pg > /dev/null &
sleep 5
echo "Creating database"