summaryrefslogtreecommitdiff
path: root/Jenkinsfile
blob: 1dcbdad16befbb566eec6091c0e58e8cacb09de9 (about) (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
pipeline {
    agent { label "master" }
    stages {
        stage("git clone guix-wigust") {
            steps {
                parallelGitClone (
                    url: "https://cgit.duckdns.org/git/guix/guix-wigust",
                    nodeLabels: ["guix"],
                    dir: "$Constants.homeDir/src/guix-wigust"
                )
            }
        }
    }
}