Changeset 0370b9b


Ignore:
Timestamp:
Feb 22, 2017, 3:06:05 PM (7 years ago)
Author:
Thierry Delisle <tdelisle@…>
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
Message:

Compiler is already a type...

File:
1 edited

Legend:

Unmodified
Added
Removed
  • Jenkinsfile

    r201d77a r0370b9b  
    106106                                [$class: 'ChoiceParameterDefinition',                                           \
    107107                                        description: 'Which compiler to use',                                   \
    108                                         name: 'Compiler',                                                               \
     108                                        name: 'pCompiler',                                                              \
    109109                                        choices: 'gcc-6\ngcc-5\ngcc-4.9\nclang',                                        \
    110110                                        defaultValue: 'gcc-6',                                                          \
     
    112112                                [$class: 'ChoiceParameterDefinition',                                           \
    113113                                        description: 'The target architecture',                                 \
    114                                         name: 'Architecture',                                                           \
     114                                        name: 'pArchitecture',                                                          \
    115115                                        choices: '64-bit\n32-bit',                                                      \
    116116                                        defaultValue: '64-bit',                                                         \
     
    118118                                [$class: 'BooleanParameterDefinition',                                                  \
    119119                                        description: 'If false, only the quick test suite is ran',              \
    120                                         name: 'RunAllTests',                                                    \
     120                                        name: 'pRunAllTests',                                                   \
    121121                                        defaultValue: false,                                                            \
    122122                                ],                                                                                              \
    123123                                [$class: 'BooleanParameterDefinition',                                                  \
    124124                                        description: 'If true, jenkins also runs benchmarks',           \
    125                                         name: 'RunBenchmark',                                                   \
     125                                        name: 'pRunBenchmark',                                                  \
    126126                                        defaultValue: false,                                                            \
    127127                                ],                                                                                              \
    128128                                [$class: 'BooleanParameterDefinition',                                                  \
    129129                                        description: 'If true, jenkins also builds documentation',              \
    130                                         name: 'BuildDocumentation',                                                             \
     130                                        name: 'pBuildDocumentation',                                                            \
    131131                                        defaultValue: false,                                                            \
    132132                                ],                                                                                              \
    133133                                [$class: 'BooleanParameterDefinition',                                                  \
    134134                                        description: 'If true, jenkins also publishes results',                 \
    135                                         name: 'paramPublish_publish',                                                           \
     135                                        name: 'pPublish',                                                               \
    136136                                        defaultValue: false,                                                            \
    137137                                ],                                                                                              \
    138138                                [$class: 'BooleanParameterDefinition',                                                  \
    139139                                        description: 'If true, jenkins will not send emails',           \
    140                                         name: 'Silent',                                                 \
     140                                        name: 'pSilent',                                                \
    141141                                        defaultValue: false,                                                            \
    142142                                ],                                                                                              \
     
    144144                ]])
    145145
    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()
    154154
    155155        echo """Compiler                        : ${compiler.name} (${compiler.cpp_cc}/${compiler.cfa_cc})
Note: See TracChangeset for help on using the changeset viewer.