blob: 47bf70202c8a245909c23d31ef48f2edb0b5ea89 [file] [log] [blame]
Sergey Kulanov72f763e2016-09-29 17:08:44 +03001// Default parameters
2
Igor Belikov4dc96cd2016-09-30 12:26:18 +03003 targetDir = "./"
Sergey Kulanov72f763e2016-09-29 17:08:44 +03004 port = "29418"
5
6// Usage example
7node {
8 gitSSHCheckout {
9 credentialsId = "mcp-ci-gerrit"
10 branch = "mcp-0.1"
11 host = "ci.mcp-ci.local"
12 project = "projectcalico/calico-containers"
13 }
14}
15
16// or
17
18node {
19 gitSSHCheckout {
20 credentialsId = "mcp-ci-gerrit"
21 branch = "mcp-0.1"
22 host = "ci.mcp-ci.local"
23 project = "projectcalico/calico-containers"
Igor Belikov4dc96cd2016-09-30 12:26:18 +030024 targetDir = "some_directory"
Sergey Kulanov72f763e2016-09-29 17:08:44 +030025 }
26}
27