mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-24 21:50:12 +01:00
ci/deqp: force overwriting exiting files when compressing with zstd
This does not change the behavior in CI runs where the files are always created from scratch, but it helps on local invocations when running the command multiple times on the same rootfs. It prevents build-deqp.sh to stop at the command line prompt for questions like: ----------------------------------------------------------------------- zstd: mustpass/egl-main.txt.zst already exists; overwrite (y/n) ? y zstd: mustpass/gles2-khr-main.txt.zst already exists; overwrite (y/n) ? y => 5% zstd: mustpass/gles2-main.txt.zst already exists; overwrite (y/n) ? y => 6% ----------------------------------------------------------------------- ... Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/34468>
This commit is contained in:
parent
3e2f43bb13
commit
af96ed09f0
1 changed files with 1 additions and 1 deletions
|
|
@ -289,7 +289,7 @@ if [ "$DEQP_API" != tools ]; then
|
|||
|
||||
# Compress the caselists, since Vulkan's in particular are gigantic; higher
|
||||
# compression levels provide no real measurable benefit.
|
||||
zstd -1 --rm mustpass/*.txt
|
||||
zstd -f -1 --rm mustpass/*.txt
|
||||
fi
|
||||
|
||||
if [ "$DEQP_API" = tools ]; then
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue