Changeset e2862d3


Ignore:
Timestamp:
Apr 26, 2019, 11:33:21 AM (5 years ago)
Author:
Thierry Delisle <tdelisle@…>
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
Message:

Fixed some weitd Groovy/Jenkins/Java? interaction bug?

File:
1 edited

Legend:

Unmodified
Added
Removed
  • Jenkinsfile

    rdf57a84 re2862d3  
    292292        public String GitOldRef
    293293
    294         BuildSettings(java.util.Collections$UnmodifiableMap param, String branch) {
     294        BuildSettings(java.util.Collections$UnmodifiableMap param, String branch, String number) {
    295295                switch( param.Compiler ) {
    296296                        case 'gcc-6':
     
    329329
    330330                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}"
    332332
    333333                this.DescLong = """Compiler              : ${ this.Compiler.name } (${ this.Compiler.CXX }/${ this.Compiler.CC })
     
    394394        checkout scm
    395395
    396         final settings = new BuildSettings(params, env.BRANCH_NAME)
     396        final settings = new BuildSettings(params, env.BRANCH_NAME, env.BUILD_NUMBER)
    397397
    398398        currentBuild.description = settings.DescShort
Note: See TracChangeset for help on using the changeset viewer.