Changeset 17c6edeb for Jenkinsfile
- Timestamp:
- Aug 16, 2022, 2:52:24 PM (3 years ago)
- Branches:
- ADT, ast-experimental, master, pthread-emulation
- Children:
- 71cf630
- Parents:
- 32d1383 (diff), e116db3 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
Jenkinsfile
r32d1383 r17c6edeb 103 103 } 104 104 105 ast = Settings.NewAST ? "--enable-new-ast" : "--disable-new-ast" 106 107 sh "${SrcDir}/configure CXX=${Settings.Compiler.CXX} CC=${Settings.Compiler.CC} ${Settings.Architecture.flags} AR=gcc-ar RANLIB=gcc-ranlib ${targets} ${ast} --quiet --prefix=${BuildDir}" 105 sh "${SrcDir}/configure CXX=${Settings.Compiler.CXX} CC=${Settings.Compiler.CC} ${Settings.Architecture.flags} AR=gcc-ar RANLIB=gcc-ranlib ${targets} --quiet --prefix=${BuildDir}" 108 106 109 107 // Configure libcfa … … 281 279 public final CC_Desc Compiler 282 280 public final Arch_Desc Architecture 283 public final Boolean NewAST284 281 public final Boolean RunAllTests 285 282 public final Boolean RunBenchmark … … 339 336 340 337 this.IsSandbox = (branch == "jenkins-sandbox") 341 this.NewAST = param.NewAST342 338 this.RunAllTests = param.RunAllTests 343 339 this.RunBenchmark = param.RunBenchmark … … 349 345 this.DescShort = "${ this.Compiler.name }:${ this.Architecture.name }${full}" 350 346 351 final ast = this.NewAST ? "New AST" : "Old AST"352 347 this.DescLong = """Compiler : ${ this.Compiler.name } (${ this.Compiler.CXX }/${ this.Compiler.CC }) 353 AST Version : ${ ast.toString() }354 348 Architecture : ${ this.Architecture.name } 355 349 Arc Flags : ${ this.Architecture.flags } … … 389 383 defaultValue: 'x64', \ 390 384 ], \ 391 [$class: 'BooleanParameterDefinition', \392 description: 'If true, build compiler using new AST', \393 name: 'NewAST', \394 defaultValue: true, \395 ], \396 385 [$class: 'BooleanParameterDefinition', \ 397 386 description: 'If false, only the quick test suite is ran', \
Note:
See TracChangeset
for help on using the changeset viewer.