Changes in / [31eed869:42851542]


Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • Jenkinsfile

    r31eed869 r42851542  
     1
    12//===========================================================================================================
    23// Main compilation routine
     
    7374        currentBuild.result = "SUCCESS"
    7475
    75         //Properties sent by the git-hooks (ref name, latest commit hash, previous commit hash)
    76         properties( [[$class: 'ParametersDefinitionProperty', parameterDefinitions: \
    77                         [[$class: 'StringParameterDefinition', name: 'GitRefName',     defaultValue: 'master', description: 'name of the ref that changed' ], \
    78                          [$class: 'StringParameterDefinition', name: 'GitRefNewValue', defaultValue: 'HEAD',   description: 'new commit of the reference' ],  \
    79                          [$class: 'StringParameterDefinition', name: 'GitRefOldValue', defaultValue: 'HEAD~1', description: 'old commit of the reference']]   \
    80                 ]] )
    81 
    8276        try {
    83                 echo "Properties-start"
    84                 echo "ref name      : ${GitRefName}"
    85                 echo "ref new value : ${GitRefNewValue}"
    86                 echo "ref old value : ${GitRefOldValue}"
    87                 echo "Properties-stop"
    88 
    89                 //Prevent the build from exceeding 30 minutes
    90                 timeout(30) {
    91 
     77                // //Prevent the build from exceeding 30 minutes
     78                // timeout(30) {
     79                //
    9280                        //Wrap build to add timestamp to command line
    9381                        wrap([$class: 'TimestamperBuildWrapper']) {
     
    9785                                cfa_build()
    9886
    99                                 //Compile using gcc-5
    100                                 currentCC = new CC_Desc('gcc-5', 'g++-5', 'gcc-5')
    101                                 cfa_build()
    102 
    103                                 //Compile using gcc-4.9
    104                                 currentCC = new CC_Desc('gcc-6', 'g++-6', 'gcc-6')
    105                                 cfa_build()
    106 
    10787                        }
    108                 }
     88                // }
    10989
    11090        }
Note: See TracChangeset for help on using the changeset viewer.