From 8516e651f231ea2b3b83a0eb27f63c467acd2a44 Mon Sep 17 00:00:00 2001 From: Patrick Wuttke Date: Sun, 17 Sep 2023 15:27:08 +0200 Subject: [PATCH] Fixed wrong build conditions. --- Jenkinsfile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index c48d48d..5f240b9 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -54,7 +54,7 @@ pipeline { } stage('Build Linux Release Templates') { when { - expression { params.BUILD_EDITOR } + expression { params.BUILD_RELEASE_TEMPLATES } } steps { sh 'scons -j8 platform=linuxbsd target=template_debug use_lto=yes' @@ -62,7 +62,7 @@ pipeline { } stage('Build Windows Editor') { when { - expression { params.BUILD_EDITOR } + expression { params.BUILD_EDITOR_WINDOWS } } steps { sh 'scons -j8 platform=windows arch=x86_64 use_lto=yes' @@ -70,7 +70,7 @@ pipeline { } stage('Build Windows Debug Templates') { when { - expression { params.BUILD_DEBUG_TEMPLATES } + expression { params.BUILD_DEBUG_TEMPLATES_WINDOWS } } steps { sh 'scons -j8 platform=windows target=template_release arch=x86_64 use_lto=yes' @@ -78,7 +78,7 @@ pipeline { } stage('Build Windows Release Templates') { when { - expression { params.BUILD_EDITOR } + expression { params.BUILD_RELEASE_TEMPLATES_WINDOWS } } steps { sh 'scons -j8 platform=windows target=template_debug arch=x86_64 use_lto=yes'