Changeset 8fa3c7e6 for Jenkinsfile
- Timestamp:
- Feb 22, 2017, 5:02:53 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:
- 692de479
- Parents:
- b3e9729
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
Jenkinsfile
rb3e9729 r8fa3c7e6 113 113 description: 'The target architecture', \ 114 114 name: 'pArchitecture', \ 115 choices: ' 64-bit\n32-bit',\116 defaultValue: ' 64-bit', \115 choices: 'x64\nx86', \ 116 defaultValue: 'x64', \ 117 117 ], \ 118 118 [$class: 'BooleanParameterDefinition', \ 119 119 description: 'If false, only the quick test suite is ran', \ 120 name: 'pRunAllTests', \120 name: 'pRunAllTests', \ 121 121 defaultValue: false, \ 122 122 ], \ 123 123 [$class: 'BooleanParameterDefinition', \ 124 124 description: 'If true, jenkins also runs benchmarks', \ 125 name: 'pRunBenchmark', \125 name: 'pRunBenchmark', \ 126 126 defaultValue: true, \ 127 127 ], \ … … 219 219 def architecture_from_params( arch ) { 220 220 switch( arch ) { 221 case ' 64-bit':221 case 'x64': 222 222 return '--host=x86_64 CXXFLAGS="-m64" CFAFLAGS="-m64"' 223 223 break 224 case ' 32-bit':224 case 'x86': 225 225 return '--host=i386 CXXFLAGS="-m32" CFAFLAGS="-m32"' 226 226 break
Note: See TracChangeset
for help on using the changeset viewer.