Skip to content

Commit

Permalink
feat: Updating postgresql installation command
Browse files Browse the repository at this point in the history
  • Loading branch information
harazdovskiy committed Aug 27, 2024
1 parent 8b53393 commit 45c294e
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,12 @@ commands:
cache-only-lockfile: true
app-dir: ~/repo
override-ci-command: yarn install --pure-lockfile --no-progress
- run: sudo apt update -q && sudo apt install postgresql-12
- run: |
sudo apt update -q
sudo sh -c 'echo "deb http://apt.postgresql.org/pub/repos/apt/ $(lsb_release -cs)-pgdg main" > /etc/apt/sources.list.d/pgdg.list'
wget --quiet -O - https://www.postgresql.org/media/keys/ACCC4CF8.asc | sudo apt-key add -
sudo apt-get update
sudo apt-get install postgresql-12
jobs:
build:
Expand Down

0 comments on commit 45c294e

Please sign in to comment.