-
-
Notifications
You must be signed in to change notification settings - Fork 273
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
deps: Upgrade to Postgres 15 #10534
deps: Upgrade to Postgres 15 #10534
Conversation
cd8110c
to
c28eb51
Compare
- name: Install dependencies | ||
run: | | ||
sudo apt-get install \ | ||
`# Cypress dependencies - see https://docs.cypress.io/app/get-started/install-cypress#UbuntuDebian` \ | ||
libgtk2.0-0t64 libgtk-3-0t64 libgbm-dev libnotify-dev libnss3 libxss1 libasound2t64 libxtst6 xauth xvfb \ | ||
`# Postgres client` \ | ||
postgresql-client-16 \ | ||
`# GraphicsMagick (not sure if needed)` \ | ||
graphicsmagick |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Single command for faster install
# Update table permissions | ||
echo "Updating table permissions" | ||
psql -U postgres -h localhost $LOCALDBNAME -c "GRANT ALL ON SCHEMA public TO ${LOCALDBUSER};" | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Should we go to 16.4 to match production? |
It's the next step, but I want to make it incremental to easily rollback if it's not working for some in the team. |
Key changes:
ubuntu-24.04
(which is supposed to become the default in the next coming days) to install postgres-client-16 and make sure we use the latest tooling for restoring.