Skip to content

Commit

Permalink
Add libpq
Browse files Browse the repository at this point in the history
  • Loading branch information
evgeny-stakewise committed Dec 23, 2024
1 parent 4b658f4 commit 056e939
Showing 1 changed file with 8 additions and 3 deletions.
11 changes: 8 additions & 3 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -102,12 +102,17 @@ jobs:
steps:
- uses: actions/checkout@v4

- name: Install build dependencies
- name: Install build dependencies for Linux
run: |
sudo apt-get update
sudo apt-get install --no-install-recommends -y build-essential curl libpq-dev postgresql-client
if: matrix.os == 'linux-arm-runner'

- name: Install build dependencies for MacOS
run: |
brew install libpq
if: matrix.os == 'macos-13'

- uses: actions/setup-python@v4
with:
python-version: ${{ matrix.PYTHON_VERSION }}
Expand Down Expand Up @@ -162,7 +167,7 @@ jobs:
/tmp/artifacts/ubuntu-20.04/operator-${{ steps.get_version.outputs.VERSION }}-linux-amd64.sha256
/tmp/artifacts/linux-arm-runner/operator-${{ steps.get_version.outputs.VERSION }}-linux-arm64.tar.gz
/tmp/artifacts/linux-arm-runner/operator-${{ steps.get_version.outputs.VERSION }}-linux-arm64.sha256
/tmp/artifacts/macos-12/operator-${{ steps.get_version.outputs.VERSION }}-darwin-amd64.tar.gz
/tmp/artifacts/macos-12/operator-${{ steps.get_version.outputs.VERSION }}-darwin-amd64.sha256
/tmp/artifacts/macos-13/operator-${{ steps.get_version.outputs.VERSION }}-darwin-amd64.tar.gz
/tmp/artifacts/macos-13/operator-${{ steps.get_version.outputs.VERSION }}-darwin-amd64.sha256
/tmp/artifacts/windows-latest/operator-${{ steps.get_version.outputs.VERSION }}-windows-amd64.zip
/tmp/artifacts/windows-latest/operator-${{ steps.get_version.outputs.VERSION }}-windows-amd64.sha256

0 comments on commit 056e939

Please sign in to comment.