Changeset 155c2a28 for Jenkinsfile
- Timestamp:
- Aug 17, 2018, 1:24:54 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:
- 5afeab9
- Parents:
- 8e27665d
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
Jenkinsfile
r8e27665d r155c2a28 26 26 notify_server(0) 27 27 28 prepare_build()28 final settings = prepare_build() 29 29 30 30 clean() … … 85 85 final scmVars = checkout scm 86 86 echo "----------------------------------------" 87 echo "${scmVars.getClass()}" 87 88 echo "scmVars: ${scmVars}" 88 89 … … 97 98 gitRefOldValue = (git_reflog =~ /moving from (.+) to (.+)/)[0][1] 98 99 gitRefNewValue = (git_reflog =~ /moving from (.+) to (.+)/)[0][2] 100 } 101 102 class BuildSettings implements Serializable { 103 BuildSettings() { 104 } 99 105 } 100 106 … … 145 151 ]]) 146 152 147 params.Compiler = compiler_from_params( params.Compiler ) 148 params.Architecture = architecture_from_params( params.Architecture ) 153 echo "${params.getClass()}" 154 155 compiler = compiler_from_params( params.Compiler ) 156 crchitecture = architecture_from_params( params.Architecture ) 149 157 150 158 def full = params.RunAllTests ? " (Full)" : "" 151 currentBuild.description = "${ params.Compiler.cc_name }:${ params.Architecture.name }${full}"152 153 echo """Compiler : ${ params.Compiler.cc_name } (${ params.Compiler.cpp_cc }/${ params.Compiler.cfa_cc })154 Architecture : ${ params.Architecture.name }155 Arc Flags : ${ params.Architecture.flags }159 currentBuild.description = "${ compiler.cc_name }:${ architecture.name }${full}" 160 161 echo """Compiler : ${ params.Compiler.cc_name } (${ compiler.cpp_cc }/${ compiler.cfa_cc }) 162 Architecture : ${ architecture.name } 163 Arc Flags : ${ architecture.flags } 156 164 Run All Tests : ${ params.RunAllTests.toString() } 157 165 Run Benchmark : ${ params.RunBenchmark.toString() }
Note: See TracChangeset
for help on using the changeset viewer.