Changeset 9e5f409


Ignore:
Timestamp:
Jun 8, 2016, 1:05:07 PM (8 years ago)
Author:
Thierry Delisle <tdelisle@…>
Branches:
ADT, aaron-thesis, arm-eh, ast-experimental, cleanup-dtors, ctor, deferred_resn, demangler, enum, forall-pointer-decay, gc_noraii, jacob/cs343-translation, jenkins-sandbox, master, memory, new-ast, new-ast-unique-expr, new-env, no_list, persistent-indexer, pthread-emulation, qualifiedEnum, resolv-new, with_gc
Children:
32f17dc
Parents:
fb08280
Message:

Moved git information collection before properties description

File:
1 edited

Legend:

Unmodified
Added
Removed
  • Jenkinsfile

    rfb08280 r9e5f409  
    8888
    8989        try {
    90                 properties ([                                                                   \
    91                         [$class: 'ParametersDefinitionProperty',                                \
    92                                 parameterDefinitions: [                                         \
    93                                 [$class: 'BooleanParameterDefinition',                          \
    94                                   defaultValue: false,                                          \
    95                                   description: 'If true, the build will be promoted to the do-lang git repository (on successful builds only)', \
    96                                   name: 'promote_build'                                         \
    97                                 ]]                                                                      \
    98                         ]])
    99 
    100                 if(promote_build)
    101                 {
    102                         echo 'FULL BUILD'
    103                 }
    104 
    10590                //Prevent the build from exceeding 30 minutes
    10691                timeout(30) {
     
    11095
    11196                                collect_git_info()
     97
     98                                properties ([                                                                   \
     99                                        [$class: 'ParametersDefinitionProperty',                                \
     100                                                parameterDefinitions: [                                         \
     101                                                [$class: 'BooleanParameterDefinition',                          \
     102                                                  defaultValue: false,                                          \
     103                                                  description: 'If true, the build will be promoted to the do-lang git repository (on successful builds only)', \
     104                                                  name: 'promote_build'                                         \
     105                                                ]]                                                                      \
     106                                        ]])
     107
     108                                if(promote_build)
     109                                {
     110                                        echo 'FULL BUILD'
     111                                }
    112112
    113113                                //Compile using gcc-4.9
Note: See TracChangeset for help on using the changeset viewer.