From adeeb80dfee1f698df1fc9ed3f64bd29186cc2a2 Mon Sep 17 00:00:00 2001 From: David Sterba Date: Mon, 3 May 2021 22:47:47 +0200 Subject: [PATCH] btrfs-progs: ci: disable zoned mode where not working The support for zoned mode is incomplete and won't change so we can disable it on Leap 15.2 and Centos 8. Signed-off-by: David Sterba --- ci/images/ci-centos-8-x86_64/Dockerfile | 2 +- ci/images/ci-openSUSE-Leap-15.2-x86_64/Dockerfile | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/ci/images/ci-centos-8-x86_64/Dockerfile b/ci/images/ci-centos-8-x86_64/Dockerfile index 7e52cd83..8f7d521a 100644 --- a/ci/images/ci-centos-8-x86_64/Dockerfile +++ b/ci/images/ci-centos-8-x86_64/Dockerfile @@ -27,7 +27,7 @@ COPY ./test-build . COPY ./run-tests . COPY ./devel.tar.gz . -CMD ./test-build devel --disable-documentation +CMD ./test-build devel --disable-documentation --disable-zoned # Continue with: # cd /tmp diff --git a/ci/images/ci-openSUSE-Leap-15.2-x86_64/Dockerfile b/ci/images/ci-openSUSE-Leap-15.2-x86_64/Dockerfile index 7734f014..1e537a6e 100644 --- a/ci/images/ci-openSUSE-Leap-15.2-x86_64/Dockerfile +++ b/ci/images/ci-openSUSE-Leap-15.2-x86_64/Dockerfile @@ -23,7 +23,8 @@ COPY ./test-build . COPY ./run-tests . COPY ./devel.tar.gz . -CMD ./test-build devel --disable-documentation +# The blkzoned.h exists but blk_zone.capacity is missing, disable zoned mode explicitly +CMD ./test-build devel --disable-documentation --disable-zoned # Continue with: # cd /tmp