You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+12-12Lines changed: 12 additions & 12 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -14,7 +14,7 @@ Python ver: 2.7, 3.4, 3.5
14
14
15
15
# Table of contents
16
16
*[Installation](#installation)
17
-
*[Commands overwiew](#commands-overwiew)
17
+
*[Commands overview](#commands-overview)
18
18
*[Usage example](#usage-example)
19
19
*[Tests](#tests)
20
20
@@ -32,9 +32,9 @@ cd jenkins-cli-python
32
32
python setup.py install
33
33
```
34
34
35
-
## Configuration file (.jencins-cli)
35
+
## Configuration file (.jenkins-cli)
36
36
37
-
Server URL, Username and password may be specified either by the command line arguments or in configuration file **(.jenkins-cli)**. Command line arguments has the highest priority, after that the **.jenkins-cli** file from current folder is taking into account. If there is no.jenkins-cli file in current folder, settings will be read from **.jenkins-cli**from the home folder
37
+
Host, username and password may be specified either by the command line arguments or in the configuration file **(.jenkins-cli)**. Command line arguments have the highest priority, after that the **.jenkins-cli** file from current folder is used. If there is no.jenkins-cli file in the current folder, settings will be read from **.jenkins-cli**located in the home folder
38
38
39
39
**.jenkins-cli** example
40
40
```txt
@@ -45,16 +45,16 @@ password=******
45
45
46
46
# Commands overview:
47
47
jobs Show all jobs and their statuses
48
-
queue Shows builds queue
48
+
queue Show builds queue
49
49
building Build executor status
50
50
start Start job
51
51
info Job info
52
-
setbranch Set SCM branch
52
+
setbranch Set VCS branch (Mercurial or Git)
53
53
stop Stop job
54
54
console Show console for the build
55
-
builds Show builds for job
55
+
builds Show builds for the job
56
56
changes Show build's changes
57
-
Run `jenkins --help` for detailed help. To see the optional parameters, run `--help` for the specific command. For example `jenkins jobs --help` will show job status description and optional arguments.
57
+
Run `jenkins --help` for detailed help. To view optional parameters, run `--help` for the specific command. For example `jenkins jobs --help` will show job status description and optional arguments.
58
58
59
59
60
60
# Usage example:
@@ -70,15 +70,15 @@ Status description:
70
70
F.. -> Failed
71
71
D.. -> Disabled
72
72
U.. -> Unstable
73
-
D.. ->Disabled
73
+
N.. ->Not built
74
74
S.. -> Stable
75
75
A.. -> Aborted
76
76
.>> -> Build in progress
77
77
78
78
optional arguments:
79
79
-h, --help show this help message and exit
80
-
-a Show only active jobs
81
-
-p Show only jobs thatsin build progress
80
+
-a show only active jobs
81
+
-p show only jobsin build progress
82
82
```
83
83
Show jobs
84
84
```bash
@@ -106,7 +106,7 @@ Run job
106
106
$ jenkins start jenkins-cli
107
107
jenkins-cli: started
108
108
```
109
-
Check job builds
109
+
View job builds
110
110
```bash
111
111
$ jenkins builds jenkins-cli
112
112
S.. #18 0:00:07 (2 commits)
@@ -139,7 +139,7 @@ Finished: SUCCESS
139
139
140
140
# Tests
141
141
142
-
To perfom flake8 checks and run tests similar to Travis
142
+
To perform flake8 checks and run tests similar to Travis, do the following
0 commit comments