From a87fe9f667d12d3b9a5fd6e149c7b1ba190ffe75 Mon Sep 17 00:00:00 2001 From: Christoph Dibak Date: Wed, 29 Jan 2025 12:41:44 +0100 Subject: [PATCH] Fix GitHub Actions by installing package deps PostgreSQL compile misses libreadline. This was previously present in the GitHub Ubuntu Image but got removed. --- .github/workflows/bazel.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/bazel.yml b/.github/workflows/bazel.yml index 60259788..2329a7b1 100644 --- a/.github/workflows/bazel.yml +++ b/.github/workflows/bazel.yml @@ -14,6 +14,8 @@ jobs: with: path: ~/.cache/bazel/ key: bazel-cc-cache + - name: Install packages for the PostgreSQL extension + run: sudo apt-get install -y make libreadline-dev bison flex - name: Ensure bazelisk is installed run: bazelisk --version - name: Build C++ Workspace