Changeset 6b00c53
- Timestamp:
 - Jul 31, 2022, 2:03:18 PM (3 years ago)
 - Branches:
 - ADT, ast-experimental, master, pthread-emulation
 - Children:
 - d71db1a
 - Parents:
 - 9d2609fa
 - File:
 - 
      
- 1 edited
 
- 
          
  Jenkinsfile (modified) (5 diffs)
 
 
Legend:
- Unmodified
 - Added
 - Removed
 
- 
      
Jenkinsfile
r9d2609fa r6b00c53 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.