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