From 73ddc8c78c71877cec92785b0d9935260bcac3ae Mon Sep 17 00:00:00 2001 From: Ivan FB <128452529+Ivansete-status@users.noreply.github.com> Date: Thu, 1 Feb 2024 20:46:25 +0100 Subject: [PATCH] ci/Jenkinsfile.release: enforce -d:postgres flag is always used (#2389) --- ci/Jenkinsfile.release | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/ci/Jenkinsfile.release b/ci/Jenkinsfile.release index c26c64126..009263ffe 100644 --- a/ci/Jenkinsfile.release +++ b/ci/Jenkinsfile.release @@ -44,7 +44,6 @@ pipeline { '-d:disableMarchNative', '-d:chronicles_colors:none', '-d:insecure', - '-d:postgres', ].join(' ') ) choice( @@ -66,7 +65,7 @@ pipeline { "${params.IMAGE_NAME}:${params.IMAGE_TAG ?: env.GIT_COMMIT.take(8)}", "--label=commit='${env.GIT_COMMIT.take(8)}' " + "--build-arg=MAKE_TARGET='${params.MAKE_TARGET}' " + - "--build-arg=NIMFLAGS='${params.NIMFLAGS}' " + + "--build-arg=NIMFLAGS='${params.NIMFLAGS}' -d:postgres " + "--build-arg=LOG_LEVEL='${params.LOWEST_LOG_LEVEL_ALLOWED}' " + "--target=${params.DEBUG ? "debug" : "prod"} ." )