[build] Do not build tests on release

Signed-off-by: x7z4w <x7z4w@noreply.codeberg.org>
This commit is contained in:
x7z4w
2025-10-21 19:14:47 +02:00
parent 6d28928f58
commit 08bdf41bae

View File

@@ -33,7 +33,9 @@ while getopts ":cdrRxtagjlp:n:" opt; do
CMAKE_CONFIG="${CMAKE_CONFIG:-} -DNJOBS=${OPT_NJOBS}"
;;
p) OPT_PATH="$OPTARG" ;;
r) OPT_RELEASE=1 ;;
r) OPT_RELEASE=1
CMAKE_CONFIG="${CMAKE_CONFIG:-} -DSKIP_TESTS=1"
;;
R) OPT_RELEASEDEBUGINFO=1 ;;
t) OPT_DESIGNER=1 ;;
*)