Trying to fix SCRAM error

This commit is contained in:
Jeroen Baten 2022-06-16 21:12:45 +02:00 committed by GitHub
parent f8e6ff5653
commit b6a6b32e11
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -38,9 +38,14 @@ jobs:
sudo systemctl start postgresql.service
pg_isready
- name: Set scram password encryption
run: |
sudo -u postgres psql --command="ALTER SYSTEM SET password_encryption = 'scram-sha-256';"
- name: Create libreplan user
run: |
sudo -u postgres psql --command="ALTER SYSTEM SET password_encryption = 'scram-sha-256'; CREATE USER libreplan PASSWORD 'libreplan'" --command="\du"
sudo -u postgres psql --command="CREATE USER libreplan PASSWORD 'libreplan'; "
#" --command="\du"
- name: Create libreplandev database
run: |