btrfs-progs: ci: add CentOS 8 image

Build tests inside CentOS 8, long term support distro.

Signed-off-by: David Sterba <dsterba@suse.com>
This commit is contained in:
David Sterba 2021-02-24 17:32:12 +01:00
parent 287512dc20
commit 1304eb9e12
5 changed files with 71 additions and 0 deletions

View File

@ -0,0 +1,35 @@
FROM centos:8
WORKDIR /tmp
RUN rpm --import https://www.elrepo.org/RPM-GPG-KEY-elrepo.org
RUN yum -y install https://www.elrepo.org/elrepo-release-8.el8.elrepo.noarch.rpm
RUN yum -y install epel-release
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 python3 python3-devel python3-setuptools
# For downloading fresh sources
RUN yum -y install wget
# For running tests
RUN yum -y install util-linux e2fsprogs findutils grep
RUN yum -y install udev device-mapper acl attr xz
# For debugging
RUN yum -y install less vim
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

View File

@ -0,0 +1 @@
/home/dsterba/labs/btrfs-progs/ci/images/docker-build

View File

@ -0,0 +1 @@
/home/dsterba/labs/btrfs-progs/ci/images/docker-run

View File

@ -0,0 +1,12 @@
#!/bin/sh -x
where="$1"
cd "$where" || { echo "ERROR: $1 not found"; exit 1; }
make TEST_LOG=dump test-cli
make TEST_LOG=dump test-mkfs
make TEST_LOG=dump test-check
make TEST_LOG=dump test-misc
make TEST_LOG=dump test-convert
make TEST_LOG=dump test-fuzz

View File

@ -0,0 +1,22 @@
#!/bin/sh
# usage: $0 [branch name] [configure parameters]
urlbase="https://github.com/kdave/btrfs-progs/archive"
branch=${1:-devel}
fname=${branch}.tar.gz
url="${urlbase}/${fname}"
shift
echo "btrfs-progs build test of branch ${branch}"
cd /tmp
if [ -f "$fname" -a -s "$fname" ]; then
echo "Found local file $fname, not downloading"
else
echo "Missing or empty tar, downloading devel branch from git"
rm -- "$fname"
wget "$url" -O "$fname"
fi
tar xf "$fname"
cd btrfs-progs-$branch
ci/build-default "$@"