From fbc97f5556ee1880812896dec8cdbe472e2d33c6 Mon Sep 17 00:00:00 2001 From: burnettk Date: Fri, 26 Apr 2024 17:03:55 -0400 Subject: [PATCH] make sure we get pg_config on mac --- .github/workflows/tests.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 384f7ad1..618b0ca4 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -174,12 +174,12 @@ jobs: run: docker run --name postgres-spiff -p 5432:5432 -e POSTGRES_PASSWORD=spiffworkflow_backend -e POSTGRES_USER=spiffworkflow_backend -e POSTGRES_DB=spiffworkflow_backend_unit_testing -d postgres if: matrix.database == 'postgres' - - name: Install mysqlclient lib dependencies + - name: Install mysqlclient and psycopg2 lib dependencies if: matrix.os == 'macos-latest' # mysql 8.3 causes failure in poetry install so pin to 8.0. https://github.com/feast-dev/feast/issues/3916 # 8.0 is keg-only, so we have to force link it in order for pkg-config and everything to find it. run: | - brew install mysql@8.0 pkg-config && brew link mysql@8.0 + brew install mysql@8.0 pkg-config postgresql && brew link mysql@8.0 - name: Run Session run: |