def call()

in vars/vaultStageSanityCheck.groovy [25:38]


def call() {
    PipelineSupport pipelineSupport = PipelineSupport.getInstance()
    stage("Sanity Check") {
        node(pipelineSupport.getMainNodeLabel()) {
            timeout(30) {
                echo "Running on node ${env.NODE_NAME}"
                deleteDir()
                checkout scm
                String mavenArguments = 'clean compile'
                pipelineSupport.executeMaven(this, mavenArguments, false)
            }
        }
    }
}