btrfs-progs: ci: sync build options in Dockerfiles and runner scripts

The runner scripts ci/ci-build... pass build options that work for each
distro, however this was not matching some Dockerfiles. Pulling such
image would then fail due to missing dependencies (namely libudev).

Signed-off-by: David Sterba <dsterba@suse.com>
This commit is contained in:
David Sterba 2024-01-26 06:00:23 +01:00
parent 337ef1141d
commit 6ee9c9b477
4 changed files with 4 additions and 4 deletions

View file

@ -31,4 +31,4 @@ gzip --force --best devel.tar
cd "$CIIMAGEDIR"
cp "$SOURCEDIR/devel.tar.gz" .
./docker-build
./docker-run -- ./test-build devel --disable-documentation "$@"
./docker-run -- ./test-build devel --disable-documentation --disable-zoned "$@"

View file

@ -31,4 +31,4 @@ gzip --force --best devel.tar
cd "$CIIMAGEDIR"
cp "$SOURCEDIR/devel.tar.gz" .
./docker-build
./docker-run -- ./test-build devel --disable-documentation "$@"
./docker-run -- ./test-build devel --disable-documentation --disable-zoned "$@"

View file

@ -29,7 +29,7 @@ COPY ./test-build .
COPY ./run-tests .
COPY ./devel.tar.gz .
CMD ./test-build devel --disable-documentation
CMD ./test-build devel --disable-documentation --disable-libudev
# Continue with:
# cd /tmp

View file

@ -32,7 +32,7 @@ COPY ./test-build .
COPY ./run-tests .
COPY ./devel.tar.gz .
CMD ./test-build devel --disable-documentation --disable-zoned
CMD ./test-build devel --disable-documentation --disable-libudev --disable-zoned
# Continue with:
# cd /tmp