diff mbox series

[24/38] btrfs-progs: add dwarves to the package list for ci

Message ID 87d564c27e921f0e4e11e8cbf5018473998de3ef.1692800904.git.josef@toxicpanda.com (mailing list archive)
State New, archived
Headers show
Series btrfs-progs: sync ctree.c into btrfs-progs | expand

Commit Message

Josef Bacik Aug. 23, 2023, 2:32 p.m. UTC
We run pahole for the ioctl-test, which requires the dwarves package.
Add that to the docker images.

Signed-off-by: Josef Bacik <josef@toxicpanda.com>
---
 ci/images/ci-centos-7-x86_64/Dockerfile            | 2 +-
 ci/images/ci-centos-8-x86_64/Dockerfile            | 2 +-
 ci/images/ci-musl-x86_64/Dockerfile                | 2 +-
 ci/images/ci-openSUSE-Leap-15.3-x86_64/Dockerfile  | 2 +-
 ci/images/ci-openSUSE-Leap-15.4-x86_64/Dockerfile  | 2 +-
 ci/images/ci-openSUSE-tumbleweed-x86_64/Dockerfile | 2 +-
 6 files changed, 6 insertions(+), 6 deletions(-)
diff mbox series

Patch

diff --git a/ci/images/ci-centos-7-x86_64/Dockerfile b/ci/images/ci-centos-7-x86_64/Dockerfile
index ccf0bc2d..89beef70 100644
--- a/ci/images/ci-centos-7-x86_64/Dockerfile
+++ b/ci/images/ci-centos-7-x86_64/Dockerfile
@@ -10,7 +10,7 @@  RUN yum -y install autoconf automake pkg-config
 RUN yum -y install libattr-devel libblkid-devel libuuid-devel
 RUN yum -y install e2fsprogs-libs e2fsprogs-devel reiserfs-utils
 RUN yum -y install zlib-devel lzo-devel libzstd-devel zstd-devel zstd
-RUN yum -y install make gcc tar gzip clang
+RUN yum -y install make gcc tar gzip clang dwarves
 RUN yum -y install python3 python3-devel python3-setuptools
 
 # For downloading fresh sources
diff --git a/ci/images/ci-centos-8-x86_64/Dockerfile b/ci/images/ci-centos-8-x86_64/Dockerfile
index edc9ed90..e8ef1c8b 100644
--- a/ci/images/ci-centos-8-x86_64/Dockerfile
+++ b/ci/images/ci-centos-8-x86_64/Dockerfile
@@ -13,7 +13,7 @@  RUN yum -y install autoconf automake pkg-config
 RUN yum -y install libattr-devel libblkid-devel libuuid-devel
 RUN yum -y install e2fsprogs-libs e2fsprogs-devel
 RUN yum -y install zlib-devel lzo-devel libzstd-devel zstd
-RUN yum -y install make gcc tar gzip clang
+RUN yum -y install make gcc tar gzip clang dwarves
 RUN yum -y install python3 python3-devel python3-setuptools
 
 # For downloading fresh sources
diff --git a/ci/images/ci-musl-x86_64/Dockerfile b/ci/images/ci-musl-x86_64/Dockerfile
index 16c1a123..43455365 100644
--- a/ci/images/ci-musl-x86_64/Dockerfile
+++ b/ci/images/ci-musl-x86_64/Dockerfile
@@ -7,7 +7,7 @@  RUN apk add linux-headers musl-dev util-linux-dev bash
 RUN apk add attr-dev acl-dev e2fsprogs-dev zlib-dev lzo-dev zstd-dev
 RUN apk add autoconf automake make gcc tar gzip clang
 RUN apk add python3 py3-setuptools python3-dev
-RUN apk add libgcrypt-dev libsodium-dev libkcapi-dev
+RUN apk add libgcrypt-dev libsodium-dev libkcapi-dev dwarves
 
 # For downloading fresh sources
 RUN apk add wget
diff --git a/ci/images/ci-openSUSE-Leap-15.3-x86_64/Dockerfile b/ci/images/ci-openSUSE-Leap-15.3-x86_64/Dockerfile
index 11cf0dde..aafd210a 100644
--- a/ci/images/ci-openSUSE-Leap-15.3-x86_64/Dockerfile
+++ b/ci/images/ci-openSUSE-Leap-15.3-x86_64/Dockerfile
@@ -8,7 +8,7 @@  RUN zypper install -y --no-recommends libext2fs-devel libreiserfscore-devel
 RUN zypper install -y --no-recommends zlib-devel lzo-devel libzstd-devel
 RUN zypper install -y --no-recommends make gcc tar gzip clang
 RUN zypper install -y --no-recommends python3 python3-devel python3-setuptools
-RUN zypper install -y --no-recommends libudev-devel
+RUN zypper install -y --no-recommends libudev-devel dwarves
 
 # For downloading fresh sources
 RUN zypper install -y --no-recommends wget
diff --git a/ci/images/ci-openSUSE-Leap-15.4-x86_64/Dockerfile b/ci/images/ci-openSUSE-Leap-15.4-x86_64/Dockerfile
index 0b0f584a..7d3c7a6d 100644
--- a/ci/images/ci-openSUSE-Leap-15.4-x86_64/Dockerfile
+++ b/ci/images/ci-openSUSE-Leap-15.4-x86_64/Dockerfile
@@ -8,7 +8,7 @@  RUN zypper install -y --no-recommends libext2fs-devel libreiserfscore-devel
 RUN zypper install -y --no-recommends zlib-devel lzo-devel libzstd-devel
 RUN zypper install -y --no-recommends make gcc tar gzip clang
 RUN zypper install -y --no-recommends python3 python3-devel python3-setuptools
-RUN zypper install -y --no-recommends libudev-devel
+RUN zypper install -y --no-recommends libudev-devel dwarves
 
 # For downloading fresh sources
 RUN zypper install -y --no-recommends wget
diff --git a/ci/images/ci-openSUSE-tumbleweed-x86_64/Dockerfile b/ci/images/ci-openSUSE-tumbleweed-x86_64/Dockerfile
index 6487957e..fe543314 100644
--- a/ci/images/ci-openSUSE-tumbleweed-x86_64/Dockerfile
+++ b/ci/images/ci-openSUSE-tumbleweed-x86_64/Dockerfile
@@ -9,7 +9,7 @@  RUN zypper install -y --no-recommends libext2fs-devel
 RUN zypper install -y --no-recommends zlib-devel lzo-devel libzstd-devel
 RUN zypper install -y --no-recommends autoconf automake pkg-config
 RUN zypper install -y --no-recommends python3 python3-devel python3-setuptools
-RUN zypper install -y --no-recommends libudev-devel
+RUN zypper install -y --no-recommends libudev-devel dwarves
 
 # For downloading fresh sources
 RUN zypper install -y --no-recommends wget