1
0
mirror of https://github.com/google/nomulus synced 2026-04-10 03:29:28 +00:00

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.
This commit is contained in:
gbrodman
2026-03-30 18:03:04 -04:00
committed by GitHub
parent 03b3f9f5a0
commit 9ca75b2294

View File

@@ -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