Changes in Jenkinsfile [7428ad9:93fe3154]
- File:
-
- 1 edited
-
Jenkinsfile (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
Jenkinsfile
r7428ad9 r93fe3154 114 114 } 115 115 116 sh "${SrcDir}/configure CXX=${Settings.Compiler. cpp_cc} ${Settings.Architecture.flags} ${targets} --with-backend-compiler=${Settings.Compiler.cfa_cc} --quiet"116 sh "${SrcDir}/configure CXX=${Settings.Compiler.CXX} CC=${Settings.Compiler.CC} ${Settings.Architecture.flags} ${targets} --quiet" 117 117 118 118 //Compile the project … … 235 235 //Description of a compiler (Must be serializable since pipelines are persistent) 236 236 class CC_Desc implements Serializable { 237 public String cc_name238 public String cpp_cc239 public String cfa_cc240 241 CC_Desc(String cc_name, String cpp_cc, String cfa_cc) {242 this. cc_name = cc_name243 this. cpp_cc = cpp_cc244 this. cfa_cc = cfa_cc237 public String name 238 public String CC 239 public String CXX 240 241 CC_Desc(String name, String CC, String CXX) { 242 this.name = name 243 this.CC = CC 244 this.CXX = CXX 245 245 } 246 246 } … … 309 309 310 310 def full = param.RunAllTests ? " (Full)" : "" 311 this.DescShort = "${ this.Compiler. cc_name }:${ this.Architecture.name }${full}"312 313 this.DescLong = """Compiler : ${ this.Compiler. cc_name } (${ this.Compiler.cpp_cc }/${ this.Compiler.cfa_cc})311 this.DescShort = "${ this.Compiler.name }:${ this.Architecture.name }${full}" 312 313 this.DescLong = """Compiler : ${ this.Compiler.name } (${ this.Compiler.CXX }/${ this.Compiler.CC }) 314 314 Architecture : ${ this.Architecture.name } 315 315 Arc Flags : ${ this.Architecture.flags }
Note:
See TracChangeset
for help on using the changeset viewer.