From a7a5fd33cfea6a5e212f168b18d13aa166cbf350 Mon Sep 17 00:00:00 2001 From: AlexandreSinger Date: Thu, 11 Apr 2024 11:08:44 -0400 Subject: [PATCH] [CI][XML] Added XMLLINT to CI Dependencies A warning was being generated by EZGL when pre-processing the resources for main.ui. This could not be removed since the library we use to preprocess always tries to use XMLLINT even when it is not used. If the system does not have XMLLINT installed, it will always give a warning saying it is not installed. As a quick fix, we can make it so the CI has it installed, since this is technically the use case we want tested. --- .github/scripts/install_dependencies.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/scripts/install_dependencies.sh b/.github/scripts/install_dependencies.sh index e0acc3255db..b33a2e1bba4 100755 --- a/.github/scripts/install_dependencies.sh +++ b/.github/scripts/install_dependencies.sh @@ -29,6 +29,7 @@ sudo apt install -y \ libncurses5-dev \ libx11-dev \ libxft-dev \ + libxml2-utils \ libxml++2.6-dev \ libreadline-dev \ tcllib \