Changeset 0c1d240 for Jenkinsfile
- Timestamp:
- Aug 16, 2018, 11:21:26 AM (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:
- 2112663f
- Parents:
- adb6b30f
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
Jenkinsfile
radb6b30f r0c1d240 110 110 [$class: 'ChoiceParameterDefinition', \ 111 111 description: 'Which compiler to use', \ 112 name: ' pCompiler',\112 name: 'Compiler', \ 113 113 choices: 'gcc-6\ngcc-5\ngcc-4.9\nclang', \ 114 114 defaultValue: 'gcc-6', \ … … 116 116 [$class: 'ChoiceParameterDefinition', \ 117 117 description: 'The target architecture', \ 118 name: ' pArchitecture', \118 name: 'Architecture', \ 119 119 choices: 'x64\nx86', \ 120 120 defaultValue: 'x64', \ … … 122 122 [$class: 'BooleanParameterDefinition', \ 123 123 description: 'If false, only the quick test suite is ran', \ 124 name: ' pRunAllTests', \124 name: 'RunAllTests', \ 125 125 defaultValue: false, \ 126 126 ], \ 127 127 [$class: 'BooleanParameterDefinition', \ 128 128 description: 'If true, jenkins also runs benchmarks', \ 129 name: ' pRunBenchmark', \129 name: 'RunBenchmark', \ 130 130 defaultValue: false, \ 131 131 ], \ 132 132 [$class: 'BooleanParameterDefinition', \ 133 133 description: 'If true, jenkins also builds documentation', \ 134 name: ' pBuildDocumentation', \134 name: 'BuildDocumentation', \ 135 135 defaultValue: true, \ 136 136 ], \ 137 137 [$class: 'BooleanParameterDefinition', \ 138 138 description: 'If true, jenkins also publishes results', \ 139 name: ' pPublish',\139 name: 'Publish', \ 140 140 defaultValue: false, \ 141 141 ], \ 142 142 [$class: 'BooleanParameterDefinition', \ 143 143 description: 'If true, jenkins will not send emails', \ 144 name: ' pSilent', \144 name: 'Silent', \ 145 145 defaultValue: false, \ 146 146 ], \ … … 148 148 ]]) 149 149 150 compiler = compiler_from_params( p Compiler )151 arch_name = p Architecture150 compiler = compiler_from_params( params.Compiler ) 151 arch_name = params.Architecture 152 152 architecture = architecture_from_params( arch_name ) 153 153 154 do_alltests = (p RunAllTests == 'true')155 do_benchmark = (p RunBenchmark == 'true')156 do_doc = (p BuildDocumentation == 'true')157 do_publish = (p Publish == 'true')158 do_sendemail = ! (p Silent == 'true')154 do_alltests = (params.RunAllTests == 'true') 155 do_benchmark = (params.RunBenchmark == 'true') 156 do_doc = (params.BuildDocumentation == 'true') 157 do_publish = (params.Publish == 'true') 158 do_sendemail = ! (params.Silent == 'true') 159 159 160 160 collect_git_info()
Note: See TracChangeset
for help on using the changeset viewer.