backport db-setup.sh

This commit is contained in:
Shish 2024-01-15 21:47:31 +00:00
parent c0bb34fbf1
commit 189af4c9ea

View file

@ -1,10 +1,12 @@
#!/bin/sh
set -eux
DATABASE=$1
mkdir -p data/config
if [[ "$DATABASE" == "pgsql" ]]; then
if [ "$DATABASE" = "pgsql" ]; then
sudo systemctl start postgresql
psql --version
sudo -u postgres psql -c "SELECT set_config('log_statement', 'all', false);" -U postgres
@ -12,20 +14,20 @@ if [[ "$DATABASE" == "pgsql" ]]; then
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
if [ "$DATABASE" = "mysql" ]; then
sudo systemctl start mysql
mysql --version
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
if [ "$DATABASE" = "sqlite" ]; then
sudo apt update && sudo apt-get install -y sqlite3
sqlite3 --version
export TEST_DSN="sqlite:data/shimmie.sqlite"
fi
if [[ -n "$GITHUB_ENV" ]]; then
if [ -n "$GITHUB_ENV" ]; then
echo "TEST_DSN=$TEST_DSN" >> $GITHUB_ENV
echo "INSTALL_DSN=$TEST_DSN" >> $GITHUB_ENV
fi