Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Prepare Docker image for CI integration jobs #2126

Merged
merged 6 commits into from
Jan 31, 2025
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
68 changes: 64 additions & 4 deletions tests/ci/docker_images/linux-x86/ubuntu-22.04_base/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -25,47 +25,107 @@ RUN set -ex && \
apt-get -y --no-install-recommends install \
software-properties-common \
automake \
autoconf \
autoconf-archive \
autogen \
binutils-dev \
build-essential \
check \
cmake \
curl \
make \
ninja-build \
patch \
perl \
libunwind-dev \
pkg-config \
git \
gnutls-dev \
ca-certificates \
sudo \
nhatnghiho marked this conversation as resolved.
Show resolved Hide resolved
wget \
clang-format \
doxygen \
gcovr \
gettext \
gobject-introspection \
gnupg \
gnutls-dev \
gperf \
groff \
iproute2 \
lcov \
lld \
llvm \
llvm-dev \
libcap-dev \
libcryptx-perl \
libcurl4-openssl-dev \
libevent-dev \
libfstrm-dev \
libftdi-dev \
libglib2.0-dev \
libgmp-dev \
libicu-dev \
libini-config-dev \
libio-socket-ssl-perl \
libipc-run-perl \
libjson-perl \
liblua5.4-dev \
libcap-ng-dev \
libcmocka0 \
libcmocka-dev \
libjemalloc-dev \
libjson-c-dev \
libltdl-dev \
liblz4-dev \
liblzo2-dev \
libnghttp2-dev \
libnet-dev \
libnet-ssleay-perl \
libnl-3-dev \
libnl-genl-3-dev \
libpam-dev \
libpam0g-dev \
libpcap-dev \
libperl-dev \
libpcre2-dev \
libpcre3-dev \
libpsl-dev \
libprotobuf-c-dev \
libreadline-dev \
libsqlite3-dev \
libssl-dev \
libsystemd-dev \
libtool \
libudev-dev \
libunwind-dev \
liburcu-dev \
libusb-1.0-0-dev \
libuv1-dev \
libyaml-dev \
net-tools \
openjdk-11-jdk \
openssl \
pandoc \
procps \
protobuf-c-compiler \
python3 \
python3-docutils \
python3-pip \
python3-pytest \
python3-six \
python3-sphinx \
ruby \
socat \
uthash-dev \
zlib1g-dev \
dpkg-dev \
flex \
bison \
jq \
uuid-dev \
unzip && \
# Based on https://docs.aws.amazon.com/cli/latest/userguide/install-cliv2-linux.html
# The awscli is used to publish data to CloudWatch Metrics in some jobs. This requires additional IAM permission
pip3 install gcovr && \
curl "https://awscli.amazonaws.com/awscli-exe-linux-x86_64.zip" -o "awscliv2.zip" && \
unzip awscliv2.zip && \
./aws/install --bin-dir /usr/bin && \
Expand All @@ -84,4 +144,4 @@ RUN set -ex && \
rm -rf /tmp/*

COPY install_common_dependencies.sh /
RUN set -ex && /install_common_dependencies.sh && rm install_common_dependencies.sh
RUN set -ex && /install_common_dependencies.sh && rm install_common_dependencies.sh
Loading