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:
parent
337ef1141d
commit
6ee9c9b477
|
@ -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 "$@"
|
||||
|
|
|
@ -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 "$@"
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue