fate: add skip_clean option

This is useful if one wants to inspect build artifacts after running
fate.sh script.

Signed-off-by: Kacper Michajłow <kasper93@gmail.com>
This commit is contained in:
Kacper Michajłow
2025-10-27 04:33:37 +01:00
parent fd4e86be9e
commit 6cb002610b
2 changed files with 2 additions and 1 deletions
+1
View File
@@ -6,6 +6,7 @@ workdir= # directory in which to do all the work
#fate_recv="ssh -T fate@fate.ffmpeg.org" # command to submit report
comment= # optional description
build_only= # set to "yes" for a compile-only instance that skips tests
skip_clean= # set to "yes" to preserve build/install directories
ignore_tests=
# the following are optional and map to configure options
+1 -1
View File
@@ -95,7 +95,7 @@ fate()(
)
clean(){
rm -rf ${build} ${inst}
test "$skip_clean" = "yes" || rm -rf ${build} ${inst}
}
report(){