From 9ca75b2294aae5595191dd1074e2cce56e7c2ad8 Mon Sep 17 00:00:00 2001 From: gbrodman Date: Mon, 30 Mar 2026 18:03:04 -0400 Subject: [PATCH] Install graphviz package in Cloud Build machines (#2997) The bumped dependency uses the system utility rather than the Java package, so we need to make sure that it's installed. --- release/builder/build.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/release/builder/build.sh b/release/builder/build.sh index ec825cd05..ade65027f 100755 --- a/release/builder/build.sh +++ b/release/builder/build.sh @@ -38,6 +38,9 @@ apt-get update -y # Install GPG2 (in case it was not included) apt-get install gnupg2 -y +# Install the graphviz package for the SQL diagram +apt-get install graphviz -y + # Install Java apt-get install openjdk-21-jdk-headless -y