Skip to content

Commit

Permalink
btrfs-progs: ci: install clang on all images
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
kdave committed May 7, 2021
1 parent b02d151 commit d92d7bc
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion ci/images/ci-centos-7-x86_64/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion ci/images/ci-centos-8-x86_64/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion ci/images/ci-openSUSE-Leap-15.2-x86_64/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
1 change: 1 addition & 0 deletions ci/images/ci-openSUSE-tumbleweed-x86_64/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit d92d7bc

Please sign in to comment.