43 lines
1.3 KiB
Docker
43 lines
1.3 KiB
Docker
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
|
|
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
|
|
|
|
# For downloading fresh sources
|
|
RUN zypper install -y --no-recommends wget
|
|
|
|
# For running tests
|
|
RUN zypper install -y --no-recommends coreutils util-linux e2fsprogs findutils grep
|
|
RUN zypper install -y --no-recommends udev device-mapper acl attr xz
|
|
|
|
# For debugging
|
|
RUN zypper install -y --no-recommends less vim
|
|
|
|
# Static build
|
|
RUN zypper install -y --no-recommends glibc-devel-static libblkid-devel-static \
|
|
libcom_err-devel-static libext2fs-devel-static libuuid-devel-static \
|
|
libzstd-devel-static lzo-devel-static zlib-devel-static
|
|
|
|
COPY ./test-build .
|
|
COPY ./run-tests .
|
|
COPY ./devel.tar.gz .
|
|
|
|
CMD ./test-build devel --disable-documentation
|
|
|
|
# Continue with:
|
|
# cd /tmp
|
|
# (see CMD above)
|
|
# ./run-tests /tmp/btrfs-progs-devel
|
|
#
|
|
# To test static build:
|
|
# cd btrfs-progs-devel
|
|
# make static
|