Skip to content

Commit 6bfa69f

Browse files
committed
Add libxml2 to apt-get prelude in tests (required by wasm-ld)
1 parent 3683d4e commit 6bfa69f

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

tests/scripts/debian_test.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ set -exuo pipefail
3030
# Common setup
3131
export DEBIAN_FRONTEND=noninteractive
3232
apt-get -qq update
33-
apt-get -qq -y install curl libtinfo5 zlib1g-dev >/dev/null
33+
apt-get -qq -y install curl libtinfo5 libxml2 zlib1g-dev >/dev/null
3434
# The above command gives some verbose output that can not be silenced easily.
3535
# https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=288778
3636

tests/scripts/linux_sysroot_test.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ set -exuo pipefail
3030
# Common setup
3131
export DEBIAN_FRONTEND=noninteractive
3232
apt-get -qq update
33-
apt-get -qq -y install curl libtinfo5 zlib1g-dev >/dev/null
33+
apt-get -qq -y install curl libtinfo5 libxml2 zlib1g-dev >/dev/null
3434
# The above command gives some verbose output that can not be silenced easily.
3535
# https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=288778
3636

tests/scripts/run_docker_exec_test.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ docker build --platform=linux/amd64 --pull --tag=bazel-docker-sandbox - <<-EOF
4040
FROM ${base_image}
4141
ENV DEBIAN_FRONTEND=noninteractive
4242
RUN apt-get -qq update && \
43-
apt-get -qq -y install libtinfo5 zlib1g-dev libxml2
43+
apt-get -qq -y install libtinfo5 libxml2 zlib1g-dev libxml2
4444
EOF
4545

4646
build_args=(

tests/scripts/ubuntu_20_04_test.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ set -exuo pipefail
3030
# Common setup
3131
export DEBIAN_FRONTEND=noninteractive
3232
apt-get -qq update
33-
apt-get -qq -y install apt-utils curl libtinfo5 pkg-config zlib1g-dev >/dev/null
33+
apt-get -qq -y install apt-utils curl libtinfo5 libxml2 pkg-config zlib1g-dev >/dev/null
3434
# The above command gives some verbose output that can not be silenced easily.
3535
# https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=288778
3636

tests/scripts/ubuntu_22_04_test.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ set -exuo pipefail
3030
# Common setup
3131
export DEBIAN_FRONTEND=noninteractive
3232
apt-get -qq update
33-
apt-get -qq -y install curl libtinfo5 zlib1g-dev >/dev/null
33+
apt-get -qq -y install curl libtinfo5 libxml2 zlib1g-dev >/dev/null
3434
# The above command gives some verbose output that can not be silenced easily.
3535
# https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=288778
3636

0 commit comments

Comments
 (0)