Skip to content

Commit 2d2b854

Browse files
Fix CI build errors caused by missing dependencies (#2163)
Adds extra step in CI workflow to install missing necessary dependencies.
1 parent c75d9e4 commit 2d2b854

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

.github/workflows/installcheck.yaml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,11 @@ jobs:
2222
path: ~/pg16
2323
key: ${{ runner.os }}-v1-pg16-${{ env.PG_COMMIT_HASH }}
2424

25+
- name: Install necessary dependencies
26+
run: |
27+
sudo apt-get update
28+
sudo apt-get install -y build-essential libreadline-dev zlib1g-dev flex bison
29+
2530
- name: Install PostgreSQL 16 and some extensions
2631
if: steps.pg16cache.outputs.cache-hit != 'true'
2732
run: |

0 commit comments

Comments
 (0)