blob: 087d0180d908d88aeddf45b490e06f16923efa3e [file] [log] [blame]
Sergey Kulanov72f763e2016-09-29 17:08:44 +03001// Default parameters
2
3 target_dir = "./"
4 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"
24 target_dir = "some_directory"
25 }
26}
27