Changeset 8f466d4 for Jenkinsfile
- Timestamp:
- Aug 17, 2018, 1:55:22 PM (6 years ago)
- 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
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
Jenkinsfile
rcdb5961 r8f466d4 100 100 101 101 BuildSettings(java.util.Collections$UnmodifiableMap param, java.util.TreeMap scmVars) { 102 this.Compiler = compiler_from_params( param s.Compiler )103 this.Architecture = architecture_from_params( param s.Architecture )104 this.RunAllTests = param s.RunAllTests105 this.RunBenchmark = param s.RunBenchmark106 this.BuildDocumentation = param s.BuildDocumentation107 this.Publish = param s.Publish108 this.Silent = param s.Silent102 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 109 109 this.IsSandbox = scmVars.GIT_BRANCH == "jenkins-sandbox" 110 110 this.Branch = scmVars.GIT_BRANCH … … 113 113 this.RepoUrl = scmVars.GIT_URL 114 114 115 def full = param s.RunAllTests ? " (Full)" : ""115 def full = param.RunAllTests ? " (Full)" : "" 116 116 this.DescShort = "${ this.Compiler.cc_name }:${ this.Architecture.name }${full}" 117 117
Note: See TracChangeset
for help on using the changeset viewer.