From 0b95b71ce940f5450bb4f08e46c8b31833d1130c Mon Sep 17 00:00:00 2001 From: Magnus Jacobsson Date: Wed, 21 Oct 2020 08:53:12 +0200 Subject: [PATCH] Add brew install pango to macos build jobs Needed for png format and cairo renderer. Fixes https://gitlab.com/graphviz/graphviz/-/issues/1860. --- .gitlab-ci.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 15ab4a1c9..541be0a17 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -254,6 +254,7 @@ macos-autotools-build: - brew update - brew install autogen || brew upgrade autogen - brew install bison || brew upgrade bison + - brew install pango || brew upgrade pango - export PATH="/usr/local/opt/bison/bin:$PATH" - export build_system="autotools" - python3 gen_version.py > VERSION # FIXME: remove when building from portable source @@ -294,6 +295,7 @@ macos-cmake-build: - brew update - brew install cmake || brew upgrade cmake - brew install bison || brew upgrade bison + - brew install pango || brew upgrade pango - export PATH="/usr/local/opt/bison/bin:$PATH" - export build_system="cmake" - python3 gen_version.py > VERSION -- 2.40.0