This is an automated email from the ASF dual-hosted git repository. jgemignani pushed a commit to branch PG14 in repository https://gitbox.apache.org/repos/asf/age.git
commit 0f22400643654fc6811b92fcc0eac85bd30a4038 Author: Muhammad Taha Naveed <[email protected]> AuthorDate: Thu May 8 20:32:58 2025 +0500 Fix CI build errors caused by missing dependencies (#2163) Adds extra step in CI workflow to install missing necessary dependencies. --- .github/workflows/installcheck.yaml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/installcheck.yaml b/.github/workflows/installcheck.yaml index d0046e85..8d89066d 100644 --- a/.github/workflows/installcheck.yaml +++ b/.github/workflows/installcheck.yaml @@ -22,6 +22,11 @@ jobs: path: ~/pg14 key: ${{ runner.os }}-v1-pg14-${{ env.PG_COMMIT_HASH }} + - name: Install necessary dependencies + run: | + sudo apt-get update + sudo apt-get install -y build-essential libreadline-dev zlib1g-dev flex bison + - name: Install PostgreSQL 14 and some extensions if: steps.pg14cache.outputs.cache-hit != 'true' run: |
