Changeset b94206b for Jenkinsfile


Ignore:
Timestamp:
Jul 12, 2016, 4:51:30 PM (9 years ago)
Author:
Thierry Delisle <tdelisle@…>
Branches:
ADT, aaron-thesis, arm-eh, ast-experimental, cleanup-dtors, ctor, deferred_resn, demangler, enum, forall-pointer-decay, 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:
e67f54c
Parents:
a3e1f8f
Message:

added some debugging messages to jenkins file, full build now starts 2 builds in parallel

File:
1 edited

Legend:

Unmodified
Added
Removed
  • TabularUnified Jenkinsfile

    ra3e1f8f rb94206b  
    204204
    205205        finally {
     206                echo 'Build Completed'
     207
    206208                //Send email with final results if this is not a full build
    207209                if( !bIsFullBuild ) {
     210                        echo 'Notifying users of result'
    208211                        email(currentBuild.result, log_needed)
    209212                }
     
    219222//Routine responsible of sending the email notification once the build is completed
    220223//===========================================================================================================
    221 def notify_result(boolean bIsFullBuild, Exception err, String status, boolean log) {
    222         echo 'Build completed, sending result notification'
    223         if(bIsFullBuild)         {
    224                 email(status, log)
    225         }
    226 }
    227 
    228224//Standard build email notification
    229225def email(String status, boolean log) {
Note: See TracChangeset for help on using the changeset viewer.