Skip to content

Commit b6dd613

Browse files
committed
Ensure the libpq{,N}-dev package is removed in CI (#1034)
1 parent 4b9467a commit b6dd613

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/tests.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ jobs:
5656
echo ""
5757
5858
echo "----- Remove old postgres -----"
59-
sudo apt remove -y postgres*
59+
sudo apt remove -y '^postgres.*' '^libpq.*'
6060
echo ""
6161
6262
echo "----- Set up PostgreSQL Apt repository -----"
@@ -289,7 +289,7 @@ jobs:
289289
echo ""
290290
291291
echo "----- Remove existing installations of postgres -----"
292-
sudo apt remove -y postgres*
292+
sudo apt remove -y '^postgres.*' '^libpq.*'
293293
echo ""
294294
295295
echo "----- Install system dependencies -----"

0 commit comments

Comments
 (0)