Skip to content

Commit

Permalink
Fixing build
Browse files Browse the repository at this point in the history
  • Loading branch information
tesonep committed Nov 22, 2022
1 parent 6b4f67d commit 9ec6b32
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -110,11 +110,11 @@ def runBuild(platformName, configuration, headless = true, someAdditionalParamet
def buildDirectory = headless ? "build" :"build-stockReplacement"
def additionalParameters = someAdditionalParameters

additionalParameters += headless ? "" : "-DALWAYS_INTERACTIVE=1 "
additionalParameters += isRelease() ? "-DBUILD_IS_RELEASE=ON " : "-DBUILD_IS_RELEASE=OFF "
additionalParameters += headless ? "" : " -DALWAYS_INTERACTIVE=1 "
additionalParameters += isRelease() ? " -DBUILD_IS_RELEASE=ON " : " -DBUILD_IS_RELEASE=OFF "

if(configuration == 'StackVM'){
additionalParameters += "-DFEATURE_MESSAGE_COUNT=TRUE "
additionalParameters += " -DFEATURE_MESSAGE_COUNT=TRUE "
platform = "${platformName}-StackVM"
buildDirectory = "build-StackVM"
}
Expand Down Expand Up @@ -460,7 +460,7 @@ try{
runBuild(platform, "StackVM")
}
timeout(30){
runBuild("${platform}-ComposedFormat", "CoInterpreter", true, "-DIMAGE_FORMAT=ComposedFormat")
runBuild("${platform}-ComposedFormat", "CoInterpreter", true, " -DIMAGE_FORMAT=ComposedFormat ")
}
timeout(30){
// Only build the Stock replacement version in the main branch
Expand Down

0 comments on commit 9ec6b32

Please sign in to comment.