Changeset 8f466d4 for Jenkinsfile


Ignore:
Timestamp:
Aug 17, 2018, 1:55:22 PM (6 years ago)
Author:
Thierry Delisle <tdelisle@…>
Branches:
ADT, aaron-thesis, arm-eh, ast-experimental, cleanup-dtors, deferred_resn, demangler, enum, forall-pointer-decay, jacob/cs343-translation, jenkins-sandbox, master, new-ast, new-ast-unique-expr, no_list, persistent-indexer, pthread-emulation, qualifiedEnum
Children:
4b82db3
Parents:
cdb5961
Message:

Removed use of params inside BuildSettings? ctor

File:
1 edited

Legend:

Unmodified
Added
Removed
  • Jenkinsfile

    rcdb5961 r8f466d4  
    100100
    101101        BuildSettings(java.util.Collections$UnmodifiableMap param, java.util.TreeMap scmVars) {
    102                 this.Compiler         = compiler_from_params( params.Compiler )
    103                 this.Architecture       = architecture_from_params( params.Architecture )
    104                 this.RunAllTests        = params.RunAllTests
    105                 this.RunBenchmark       = params.RunBenchmark
    106                 this.BuildDocumentation = params.BuildDocumentation
    107                 this.Publish            = params.Publish
    108                 this.Silent             = params.Silent
     102                this.Compiler         = compiler_from_params( param.Compiler )
     103                this.Architecture       = architecture_from_params( param.Architecture )
     104                this.RunAllTests        = param.RunAllTests
     105                this.RunBenchmark       = param.RunBenchmark
     106                this.BuildDocumentation = param.BuildDocumentation
     107                this.Publish            = param.Publish
     108                this.Silent             = param.Silent
    109109                this.IsSandbox          = scmVars.GIT_BRANCH == "jenkins-sandbox"
    110110                this.Branch             = scmVars.GIT_BRANCH
     
    113113                this.RepoUrl            = scmVars.GIT_URL
    114114
    115                 def full = params.RunAllTests ? " (Full)" : ""
     115                def full = param.RunAllTests ? " (Full)" : ""
    116116                this.DescShort = "${ this.Compiler.cc_name }:${ this.Architecture.name }${full}"
    117117
Note: See TracChangeset for help on using the changeset viewer.