Changeset e2862d3
- Timestamp:
- Apr 26, 2019, 11:33:21 AM (6 years ago)
- Branches:
- ADT, arm-eh, ast-experimental, cleanup-dtors, enum, forall-pointer-decay, jacob/cs343-translation, jenkins-sandbox, master, new-ast, new-ast-unique-expr, pthread-emulation, qualifiedEnum
- Children:
- 490cb3c
- Parents:
- df57a84
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
Jenkinsfile
rdf57a84 re2862d3 292 292 public String GitOldRef 293 293 294 BuildSettings(java.util.Collections$UnmodifiableMap param, String branch ) {294 BuildSettings(java.util.Collections$UnmodifiableMap param, String branch, String number) { 295 295 switch( param.Compiler ) { 296 296 case 'gcc-6': … … 329 329 330 330 def full = param.RunAllTests ? " (Full)" : "" 331 this.DescShort = "${ env.BUILD_NUMBER} - ${ this.Compiler.name }:${ this.Architecture.name }${full}"331 this.DescShort = "${number} - ${ this.Compiler.name }:${ this.Architecture.name }${full}" 332 332 333 333 this.DescLong = """Compiler : ${ this.Compiler.name } (${ this.Compiler.CXX }/${ this.Compiler.CC }) … … 394 394 checkout scm 395 395 396 final settings = new BuildSettings(params, env.BRANCH_NAME )396 final settings = new BuildSettings(params, env.BRANCH_NAME, env.BUILD_NUMBER) 397 397 398 398 currentBuild.description = settings.DescShort
Note: See TracChangeset
for help on using the changeset viewer.