Jenkinsfile
author Jan Vrany <jan.vrany@fit.cvut.cz>
Mon, 14 Nov 2016 20:09:29 +0000
changeset 70 8e73f248c6d4
parent 69 23cdc822cfc5
child 74 57edfcce2a40
permissions -rw-r--r--
Changed logic used to check whether to checkout or download stc and librun: * If repository named `swing:private:hg` is defined, then checkout sources, * otherwise, download from public SWING CI server.

/*
 * Run default pipeline. See `pipeline.groovy for details.
 */

def pipeline;
stage ( "Load Pipeline") {
    node {
        checkout scm
        pipeline = load "pipeline.groovy"
    }
}

pipeline.build()
pipeline.test()