Changeset 0370b9b for Jenkinsfile
- Timestamp:
- Feb 22, 2017, 3:06:05 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:
- e6b862d
- Parents:
- 201d77a
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
Jenkinsfile
r201d77a r0370b9b 106 106 [$class: 'ChoiceParameterDefinition', \ 107 107 description: 'Which compiler to use', \ 108 name: ' Compiler', \108 name: 'pCompiler', \ 109 109 choices: 'gcc-6\ngcc-5\ngcc-4.9\nclang', \ 110 110 defaultValue: 'gcc-6', \ … … 112 112 [$class: 'ChoiceParameterDefinition', \ 113 113 description: 'The target architecture', \ 114 name: ' Architecture', \114 name: 'pArchitecture', \ 115 115 choices: '64-bit\n32-bit', \ 116 116 defaultValue: '64-bit', \ … … 118 118 [$class: 'BooleanParameterDefinition', \ 119 119 description: 'If false, only the quick test suite is ran', \ 120 name: ' RunAllTests', \120 name: 'pRunAllTests', \ 121 121 defaultValue: false, \ 122 122 ], \ 123 123 [$class: 'BooleanParameterDefinition', \ 124 124 description: 'If true, jenkins also runs benchmarks', \ 125 name: ' RunBenchmark', \125 name: 'pRunBenchmark', \ 126 126 defaultValue: false, \ 127 127 ], \ 128 128 [$class: 'BooleanParameterDefinition', \ 129 129 description: 'If true, jenkins also builds documentation', \ 130 name: ' BuildDocumentation', \130 name: 'pBuildDocumentation', \ 131 131 defaultValue: false, \ 132 132 ], \ 133 133 [$class: 'BooleanParameterDefinition', \ 134 134 description: 'If true, jenkins also publishes results', \ 135 name: 'p aramPublish_publish', \135 name: 'pPublish', \ 136 136 defaultValue: false, \ 137 137 ], \ 138 138 [$class: 'BooleanParameterDefinition', \ 139 139 description: 'If true, jenkins will not send emails', \ 140 name: ' Silent', \140 name: 'pSilent', \ 141 141 defaultValue: false, \ 142 142 ], \ … … 144 144 ]]) 145 145 146 compiler = compiler_from_params( Compiler )147 architecture = architecture_from_params( Architecture )148 149 do_alltests = RunAllTests.toBoolean()150 do_benchmark = RunBenchmark.toBoolean()151 do_doc = BuildDocumentation.toBoolean()152 do_publish = Publish.toBoolean()153 do_sendemail = ! Silent.toBoolean()146 compiler = compiler_from_params( pCompiler ) 147 architecture = architecture_from_params( pArchitecture ) 148 149 do_alltests = pRunAllTests.toBoolean() 150 do_benchmark = pRunBenchmark.toBoolean() 151 do_doc = pBuildDocumentation.toBoolean() 152 do_publish = pPublish.toBoolean() 153 do_sendemail = ! pSilent.toBoolean() 154 154 155 155 echo """Compiler : ${compiler.name} (${compiler.cpp_cc}/${compiler.cfa_cc})
Note: See TracChangeset
for help on using the changeset viewer.