Skip to content

Commit

Permalink
fix(ci): add PostgreSQL repository
Browse files Browse the repository at this point in the history
  • Loading branch information
danimarinBG committed Jan 9, 2025
1 parent d97a98c commit c12e310
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .github/workflows/ci_test_ud_db.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,11 @@ jobs:
python -m pip install --upgrade pip
pip install -r test/requirements.txt
- name: Add PostgreSQL repository
run: |
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 -qO - https://www.postgresql.org/media/keys/ACCC4CF8.asc | sudo apt-key add -
- name: Update apt-get and Install PostgreSQL, PostGIS, pgRouting, and pgTAP
run: |
sudo apt-get update
Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/ci_test_ws_db.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,11 @@ jobs:
python -m pip install --upgrade pip
pip install -r test/requirements.txt
- name: Add PostgreSQL repository
run: |
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 -qO - https://www.postgresql.org/media/keys/ACCC4CF8.asc | sudo apt-key add -
- name: Update apt-get and Install PostgreSQL, PostGIS, pgRouting, and pgTAP
run: |
sudo apt-get update
Expand Down

0 comments on commit c12e310

Please sign in to comment.