Changeset 3b56166 for Jenkinsfile
- Timestamp:
- Feb 10, 2020, 11:17:38 AM (6 years ago)
- Branches:
- ADT, arm-eh, ast-experimental, enum, forall-pointer-decay, jacob/cs343-translation, jenkins-sandbox, master, new-ast, new-ast-unique-expr, pthread-emulation, qualifiedEnum
- Children:
- 3966d9a, 41efd33
- Parents:
- 807a632 (diff), d231700 (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
-
Jenkinsfile (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
Jenkinsfile
r807a632 r3b56166 102 102 103 103 echo GitLogMessage() 104 105 // This is a complete hack but it solves problems with automake thinking it needs to regenerate makefiles 106 // We fudged automake/missing to handle that but automake stills bakes prints inside the makefiles 107 // and these cause more problems. 108 sh 'find . -name Makefile.in -exec touch {} +' 104 109 } 105 110 } … … 358 363 BuildSettings(java.util.Collections$UnmodifiableMap param, String branch) { 359 364 switch( param.Compiler ) { 365 case 'gcc-9': 366 this.Compiler = new CC_Desc('gcc-9', 'g++-9', 'gcc-9') 367 break 368 case 'gcc-8': 369 this.Compiler = new CC_Desc('gcc-8', 'g++-8', 'gcc-8') 370 break 371 case 'gcc-7': 372 this.Compiler = new CC_Desc('gcc-7', 'g++-7', 'gcc-7') 373 break 360 374 case 'gcc-6': 361 375 this.Compiler = new CC_Desc('gcc-6', 'g++-6', 'gcc-6') … … 368 382 break 369 383 case 'clang': 370 this.Compiler = new CC_Desc('clang', 'clang++ ', 'gcc-6')384 this.Compiler = new CC_Desc('clang', 'clang++-6.0', 'gcc-6') 371 385 break 372 386 default : … … 430 444 description: 'Which compiler to use', \ 431 445 name: 'Compiler', \ 432 choices: 'gcc- 6\ngcc-5\ngcc-4.9\nclang', \433 defaultValue: 'gcc- 6', \446 choices: 'gcc-9\ngcc-8\ngcc-7\ngcc-6\ngcc-5\ngcc-4.9\nclang', \ 447 defaultValue: 'gcc-8', \ 434 448 ], \ 435 449 [$class: 'ChoiceParameterDefinition', \
Note:
See TracChangeset
for help on using the changeset viewer.