Changes in / [10a7775:e365cb5]


Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • Jenkinsfile

    r10a7775 re365cb5  
    88                def install_dir = pwd tmp: true
    99                //checkout the source code and clean the repo
    10                 sh "rm -rf * ${install_dir}/*"
    1110                checkout scm
     11                sh 'git clean -fdqx'
     12                sh 'git reset --hard'
    1213
    1314        build_stage 'Build'
     
    3132        build_stage 'Cleanup'
    3233
    33                 //Cleanup the install dir
    34                 sh "rm -rf ${install_dir}/*"
     34                //do a maintainer-clean to make sure we need to remake from scratch
     35                sh 'make maintainer-clean > /dev/null'
    3536}
    3637
     
    7778                // timeout(30) {
    7879                //
    79                 //      //Wrap build to add timestamp to command line
    80                 //      wrap([$class: 'TimestamperBuildWrapper']) {
     80                        //Wrap build to add timestamp to command line
     81                        wrap([$class: 'TimestamperBuildWrapper']) {
    8182
    8283                                //Compile using gcc-4.9
     
    8485                                cfa_build()
    8586
    86                 //      }
     87                        }
    8788                // }
    8889
Note: See TracChangeset for help on using the changeset viewer.