Changeset e93572a for Jenkinsfile


Ignore:
Timestamp:
Jul 30, 2018, 2:40:44 PM (6 years ago)
Author:
Thierry Delisle <tdelisle@…>
Branches:
ADT, aaron-thesis, arm-eh, ast-experimental, cleanup-dtors, deferred_resn, demangler, enum, forall-pointer-decay, jacob/cs343-translation, jenkins-sandbox, master, new-ast, new-ast-unique-expr, no_list, persistent-indexer, pthread-emulation, qualifiedEnum
Children:
e1bdccb
Parents:
73787a9
Message:

Fixed incorrect order of statements in Jenkinsfile

File:
1 edited

Legend:

Unmodified
Added
Removed
  • Jenkinsfile

    r73787a9 re93572a  
    2222        do_sendemail    = true
    2323
    24         builddir = ''
    25         srcdir   = ''
     24        builddir = pwd tmp: true
     25        srcdir   = pwd tmp: false
    2626
    2727        currentBuild.result = "SUCCESS"
     
    247247        build_stage('Cleanup') {
    248248                // clean the build by wipping the build directory
    249                 sh "rm -rf ${builddir}/*"
     249                echo "rm -rf ${builddir}/*"
    250250
    251251                //Clean all temporary files to make sure no artifacts of the previous build remain
     
    267267def build() {
    268268        build_stage('Build') {
    269 
    270                 builddir = pwd tmp: true
    271                 srcdir   = pwd tmp: false
    272 
    273269                // Build outside of the src tree to ease cleaning
    274270                dir (builddir) {
Note: See TracChangeset for help on using the changeset viewer.