Jenkins: Disable static Qt on Windows debug builds

This commit is contained in:
richardg867
2022-06-29 13:32:49 -03:00
committed by GitHub
parent 1ea3634efc
commit 972550048c

4
.ci/Jenkinsfile vendored
View File

@@ -90,8 +90,8 @@ def presetSlugs = [
def presetFlags = [ def presetFlags = [
'Regular': '-t --preset=regular -D CMAKE_BUILD_TYPE=Release', 'Regular': '-t --preset=regular -D CMAKE_BUILD_TYPE=Release',
'Debug': '--preset=debug -D CMAKE_BUILD_TYPE=Debug', 'Debug': '--preset=debug -D CMAKE_BUILD_TYPE=Debug -D STATIC_BUILD=OFF',
'Dev': '--preset=experimental -D CMAKE_BUILD_TYPE=Debug -D VNC=OFF' 'Dev': '--preset=experimental -D CMAKE_BUILD_TYPE=Debug -D VNC=OFF -D STATIC_BUILD=OFF'
] ]
def gitClone(repository, branch) { def gitClone(repository, branch) {