btrfs-progs: ci: install clang on all images

Extend build coverage. The versions are different on all images and can
be run as:

  $ ./docker-run --env CC=clang

Signed-off-by: David Sterba <dsterba@suse.com>
This commit is contained in:
David Sterba 2021-05-06 22:43:02 +02:00
parent b02d151bd1
commit d92d7bcd70
4 changed files with 4 additions and 3 deletions

View File

@ -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
RUN yum -y install make gcc tar gzip clang
RUN yum -y install python3 python3-devel python3-setuptools
# For downloading fresh sources

View File

@ -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
RUN yum -y install make gcc tar gzip
RUN yum -y install make gcc tar gzip clang
RUN yum -y install python3 python3-devel python3-setuptools
# For downloading fresh sources

View File

@ -6,7 +6,7 @@ RUN zypper install -y --no-recommends autoconf automake pkg-config
RUN zypper install -y --no-recommends libattr-devel libblkid-devel libuuid-devel
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
RUN zypper install -y --no-recommends make gcc tar gzip clang
RUN zypper install -y --no-recommends python3 python3-devel python3-setuptools
# For downloading fresh sources

View File

@ -3,6 +3,7 @@ FROM opensuse/tumbleweed
WORKDIR /tmp
RUN zypper install -y --no-recommends make gcc tar gzip
RUN zypper install -y --no-recommends clang
RUN zypper install -y --no-recommends libattr-devel libblkid-devel libuuid-devel
RUN zypper install -y --no-recommends libext2fs-devel libreiserfscore-devel
RUN zypper install -y --no-recommends zlib-devel lzo-devel libzstd-devel