Changeset efbca69


Ignore:
Timestamp:
Jun 8, 2016, 12:57:16 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:
fb08280
Parents:
ab60d6d
Message:

added full build property to Jenkinsfile to support promotion

File:
1 edited

Legend:

Unmodified
Added
Removed
  • Jenkinsfile

    rab60d6d refbca69  
    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
    90105                //Prevent the build from exceeding 30 minutes
    91106                timeout(30) {
Note: See TracChangeset for help on using the changeset viewer.