Changes in Jenkinsfile [d21dd3cb:c09ae73]
- File:
-
- 1 edited
-
Jenkinsfile (modified) (5 diffs)
Legend:
- Unmodified
- Added
- Removed
-
Jenkinsfile
rd21dd3cb rc09ae73 127 127 } 128 128 129 ast = Settings.NewAST ? "--enable-new-ast" : "--disable-new-ast" 130 131 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}" 129 sh "${SrcDir}/configure CXX=${Settings.Compiler.CXX} CC=${Settings.Compiler.CC} ${Settings.Architecture.flags} AR=gcc-ar RANLIB=gcc-ranlib ${targets} --quiet --prefix=${BuildDir}" 132 130 133 131 // Configure libcfa … … 361 359 public final CC_Desc Compiler 362 360 public final Arch_Desc Architecture 363 public final Boolean NewAST364 361 public final Boolean RunAllTests 365 362 public final Boolean RunBenchmark … … 395 392 break 396 393 case 'clang': 397 this.Compiler = new CC_Desc('clang', 'clang++- 10', 'gcc-9', '-flto=thin -flto-jobs=0')394 this.Compiler = new CC_Desc('clang', 'clang++-6.0', 'gcc-6', '-flto=thin -flto-jobs=0') 398 395 break 399 396 default : … … 413 410 414 411 this.IsSandbox = (branch == "jenkins-sandbox") 415 this.NewAST = param.NewAST416 412 this.RunAllTests = param.RunAllTests 417 413 this.RunBenchmark = param.RunBenchmark … … 474 470 ], \ 475 471 [$class: 'BooleanParameterDefinition', \ 476 description: 'If true, build compiler using new AST', \477 name: 'NewAST', \478 defaultValue: false, \479 ], \480 [$class: 'BooleanParameterDefinition', \481 472 description: 'If false, only the quick test suite is ran', \ 482 473 name: 'RunAllTests', \ 483 474 defaultValue: false, \ 484 ], 475 ], \ 485 476 [$class: 'BooleanParameterDefinition', \ 486 477 description: 'If true, jenkins also runs benchmarks', \
Note:
See TracChangeset
for help on using the changeset viewer.