Testing shrinking the matrix

This commit is contained in:
Griatch 2024-06-27 22:00:52 +02:00
parent 856780b8a0
commit 762761a01b
3 changed files with 27 additions and 44 deletions

View file

@ -19,25 +19,25 @@ runs:
using: "composite"
steps:
# - name: Set up PostgreSQL server
# if: ${{ inputs.database == 'postgresql' }}
# uses: harmon758/postgresql-action@v1
# with:
# postgresql version: "12"
# postgresql db: "evennia"
# postgresql user: "evennia"
# postgresql password: "password"
- name: Set up PostgreSQL server
if: ${{ inputs.database == 'postgresql' }}
uses: harmon758/postgresql-action@v1
with:
postgresql version: "12"
postgresql db: "evennia"
postgresql user: "evennia"
postgresql password: "password"
# - name: Wait for PostgreSQL to activate
# if: ${{ inputs.database == 'postgresql' }}
# run: |
# while ! pg_isready -h 127.0.0.1 -q >/dev/null 2>&1
# do
# sleep 1
# echo -n .
# done
# echo
# shell: bash
- name: Wait for PostgreSQL to activate
if: ${{ inputs.database == 'postgresql' }}
run: |
while ! pg_isready -h 127.0.0.1 -q >/dev/null 2>&1
do
sleep 1
echo -n .
done
echo
shell: bash
- name: Set up MySQL server
if: ${{ inputs.database == 'mysql' }}