From 9851aec266a877454874aba0eb681be7f46a5b22 Mon Sep 17 00:00:00 2001 From: rymnc <43716372+rymnc@users.noreply.github.com> Date: Thu, 25 Apr 2024 14:34:43 +0200 Subject: [PATCH] Revert "ci.yml: avoid calling brew link libpq --force on macos" This reverts commit faa8938ec03c17adb0d9af6ef111f660b6c48cfa. --- .github/workflows/ci.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 4689d63216..00c3ce6dab 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -111,6 +111,11 @@ jobs: - name: Run tests run: | + if [ ${{ runner.os }} == "macOS" ]; then + brew unlink postgresql@14 + brew link libpq --force + fi + if [ ${{ runner.os }} == "Linux" ]; then sudo docker run --rm -d -e POSTGRES_PASSWORD=test123 -p 5432:5432 postgres:15.4-alpine3.18 fi