From bd56a6b9dc49ee2553fd2584fff5faba161d8e80 Mon Sep 17 00:00:00 2001 From: Matt <4922458+mbrla0@users.noreply.github.com> Date: Tue, 12 Aug 2025 19:15:36 +0000 Subject: [PATCH] Add mising dependencies in Ubuntu test targets --- .github/workflows/tests.yml | 1 + Dockerfile | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index ae9ef825f..ce1b1eb52 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -106,6 +106,7 @@ jobs: run: | ./setup.sh ./setup-dev.sh + sudo apt-get install -y libc6-dev libxml2 lzma - name: Python version info run: | diff --git a/Dockerfile b/Dockerfile index c00615bfd..6aded5b42 100644 --- a/Dockerfile +++ b/Dockerfile @@ -26,7 +26,7 @@ RUN ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && \ rm -rf /var/lib/apt/lists/* && \ localedef -i en_US -c -f UTF-8 -A /usr/share/locale/locale.alias en_US.UTF-8 && \ apt-get update && \ - apt-get install -y vim + apt-get install -y vim libc6-dev libxml2 lzma # setup.sh needs scripts/common.sh RUN mkdir scripts