Changeset 6802a5f for Jenkinsfile
- Timestamp:
- Feb 22, 2017, 2:52:43 PM (8 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, new-env, no_list, persistent-indexer, pthread-emulation, qualifiedEnum, resolv-new, with_gc
- Children:
- 1e6a463
- Parents:
- bd34bcf5
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
Jenkinsfile
rbd34bcf5 r6802a5f 146 146 do_publish = param_publish .toBoolean() 147 147 148 echo """Compiler : ${compiler.name} (${compiler.cpp_cc}/${compiler.cfa_cc}) 149 Architecture : ${architecture} 150 Run All Tests : ${ param_allTests.toString() } 151 Run Benchmark : ${ param_benchmark.toString() } 152 Build Documentation : ${ param_doc.toString() } 153 Publish : ${ param_publish.toString() } 154 """ 155 148 156 collect_git_info() 149 157 } … … 172 180 public String cc_name 173 181 public String cpp_cc 174 public String cfa_ backend_cc175 176 CC_Desc(String cc_name, String cpp_cc, String cfa_ backend_cc) {182 public String cfa_cc 183 184 CC_Desc(String cc_name, String cpp_cc, String cfa_cc) { 177 185 this.cc_name = cc_name 178 186 this.cpp_cc = cpp_cc 179 this.cfa_ backend_cc = cfa_backend_cc187 this.cfa_cc = cfa_cc 180 188 } 181 189 } … … 193 201 break 194 202 case 'clang': 195 return new CC_Desc(' gcc-6', 'clang', 'gcc-6')203 return new CC_Desc('clang', 'clang++', 'gcc-6') 196 204 break 197 205 default … … 238 246 //escapes the sandbox 239 247 //Also specify the compiler by hand 240 sh "./configure CXX=${compiler.cpp_cc} ${architecture} --with-backend-compiler=${compiler.cfa_ backend_cc} --prefix=${install_dir} --enable-silent-rules --quiet"248 sh "./configure CXX=${compiler.cpp_cc} ${architecture} --with-backend-compiler=${compiler.cfa_cc} --prefix=${install_dir} --enable-silent-rules --quiet" 241 249 242 250 //Compile the project
Note: See TracChangeset
for help on using the changeset viewer.