This is an automated email from the ASF dual-hosted git repository.

jgemignani pushed a commit to branch PG15
in repository https://gitbox.apache.org/repos/asf/age.git

commit 4e9c734e7d0eaa777412d46c17d394fc6883838a
Author: Muhammad Taha Naveed <mt...@apache.org>
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 fcd1a4fd..7e7214cc 100644
--- a/.github/workflows/installcheck.yaml
+++ b/.github/workflows/installcheck.yaml
@@ -22,6 +22,11 @@ jobs:
           path: ~/pg15
           key: ${{ runner.os }}-v1-pg15-${{ 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 15 and some extensions
         if: steps.pg15cache.outputs.cache-hit != 'true'
         run: |

Reply via email to