From c97bb4bd8b120e229bd9cd86b6ea7dd1bda13e87 Mon Sep 17 00:00:00 2001 From: Bogdan Guliaev Date: Mon, 15 Jul 2024 00:20:27 +0300 Subject: [PATCH] install full postgresql on MacOS for simplicity --- .github/workflows/ci.yaml | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index ebdb097..80cb458 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -78,12 +78,10 @@ jobs: - name: Install dependencies (macOS) run: | - brew install fmt libpq cpp-gsl catch2 unixodbc sqliteodbc + brew install fmt postgresql@14 cpp-gsl catch2 unixodbc sqliteodbc sudo cp data/macos-odbcinst.ini /opt/homebrew/etc/odbcinst.ini sudo ln -s /opt/homebrew/etc/odbcinst.ini /etc/odbcinst.ini sudo ln -s /opt/homebrew/etc/odbc.ini /etc/odbc.ini - odbcinst -j - odbcinst -d -q if: matrix.os == 'macos-14' - name: Install dependencies (Ubuntu)