shell??
This commit is contained in:
parent
fde43da585
commit
ad42cf80f2
1 changed files with 6 additions and 4 deletions
|
@ -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
|
||||
|
|
Reference in a new issue