Changeset 4011b98 for Jenkins


Ignore:
Timestamp:
Dec 3, 2020, 7:46:27 PM (3 years ago)
Author:
Thierry Delisle <tdelisle@…>
Branches:
ADT, arm-eh, ast-experimental, enum, forall-pointer-decay, jacob/cs343-translation, master, new-ast-unique-expr, pthread-emulation, qualifiedEnum
Children:
55da258
Parents:
91aa5ab
Message:

First pieces of distribute jenkins script

Location:
Jenkins
Files:
1 added
1 edited

Legend:

Unmodified
Added
Removed
  • Jenkins/tools.groovy

    r91aa5ab r4011b98  
    2020}
    2121
     22//===========================================================================================================
     23// Common compilation routines
     24//===========================================================================================================
     25def clean() {
     26        Tools.BuildStage('Cleanup', true) {
     27                // clean the build by wipping the build directory
     28                dir(BuildDir) {
     29                        deleteDir()
     30                }
     31        }
     32}
     33
    2234return this;
Note: See TracChangeset for help on using the changeset viewer.