This is an automated email from the ASF dual-hosted git repository.
jgemignani pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/age.git
The following commit(s) were added to refs/heads/master by this push:
new 2d2b8547 Fix CI build errors caused by missing dependencies (#2163)
2d2b8547 is described below
commit 2d2b8547054a96ef96d89fa84be52486ee7626b3
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 dddefa48..b96c2854 100644
--- a/.github/workflows/installcheck.yaml
+++ b/.github/workflows/installcheck.yaml
@@ -22,6 +22,11 @@ jobs:
path: ~/pg16
key: ${{ runner.os }}-v1-pg16-${{ 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 16 and some extensions
if: steps.pg16cache.outputs.cache-hit != 'true'
run: |