[ci] sqlite3 is installed by default, and show versions first

This commit is contained in:
Shish 2024-02-23 14:00:17 +00:00 committed by Shish
parent 4cc9b2f5d3
commit 82b8991fa4

View file

@ -7,22 +7,21 @@ DATABASE=$1
mkdir -p data/config
if [ "$DATABASE" = "pgsql" ]; then
sudo systemctl start postgresql
psql --version
sudo systemctl start postgresql
sudo -u postgres psql -c "SELECT set_config('log_statement', 'all', false);" -U postgres
sudo -u postgres psql -c "CREATE USER shimmie WITH PASSWORD 'shimmie';" -U postgres
sudo -u postgres psql -c "CREATE DATABASE shimmie WITH OWNER shimmie;" -U postgres
export TEST_DSN="pgsql:user=shimmie;password=shimmie;host=127.0.0.1;dbname=shimmie"
fi
if [ "$DATABASE" = "mysql" ]; then
sudo systemctl start mysql
mysql --version
sudo systemctl start mysql
mysql -e "SET GLOBAL general_log = 'ON';" -uroot -proot
mysql -e "CREATE DATABASE shimmie;" -uroot -proot
export TEST_DSN="mysql:user=root;password=root;host=127.0.0.1;dbname=shimmie"
fi
if [ "$DATABASE" = "sqlite" ]; then
sudo apt update && sudo apt-get install -y sqlite3
sqlite3 --version
export TEST_DSN="sqlite:data/shimmie.sqlite"
fi