Jenkinsfile
author Jan Vrany <jan.vrany@fit.cvut.cz>
Wed, 02 Nov 2016 22:00:20 +0000
changeset 69 23cdc822cfc5
child 70 8e73f248c6d4
permissions -rw-r--r--
Initial support for Jenkins pipelines.

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

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

pipeline.build()