CONTRIBUTING.md 2.8 KB
Newer Older
1 2
Welcome! Any kinds of contributions are very welcome. Please go through our contribution
guide before you create a Pull Request for `jcli`.
LinuxSuRen's avatar
LinuxSuRen 已提交
3

4 5 6 7 8 9
## Golang Environment

Go module proxy setting can speed the download of the dependencies:

`export GOPROXY=https://mirrors.aliyun.com/goproxy/`

LinuxSuRen's avatar
LinuxSuRen 已提交
10 11 12 13 14
## CLI

`jcli` is a command line interface. So a CLI framework is super important for us. Thanks to 
[cobra](https://github.com/spf13/cobra). It powers us to do a better job.

15
## Jenkins REST API
LinuxSuRen's avatar
LinuxSuRen 已提交
16

17 18 19 20 21 22 23 24 25 26
API is another important part of this project. `jcli` manages Jenkins by the REST API.
There is no full specification for this API at the moment, Jenkins core and plugins provide documentation independently.
You can figure it by yourself, or just join our
[gitter room](https://gitter.im/jenkinsci/jenkins-cli) to ask about specific APIs if needed.

Useful links:

* [Jenkins Remote Access API](https://wiki.jenkins.io/display/JENKINS/Remote+access+API)
* [Jenkins REST API overview](https://www.youtube.com/watch?v=D93t1jElt4Q) by [Cliffano Subagio](https://github.com/cliffano)
* 
LinuxSuRen's avatar
LinuxSuRen 已提交
27 28 29

## Testing

30
We use a BDD Testing Framework to test our project. Please make sure you're familiar
LinuxSuRen's avatar
LinuxSuRen 已提交
31 32 33 34
with [ginkgo](https://github.com/onsi/ginkgo) before you get start to contribute.

## Pull Requests

35
Before you get started, please fork this project into your GitHub account. Then
LinuxSuRen's avatar
LinuxSuRen 已提交
36
create a git branch base on what you want to improve. Please consider **never** using
37 38
the master branch as your development branch. And the behaviour of the git **force push** is not
encouraged when submitting pull requests.
LinuxSuRen's avatar
LinuxSuRen 已提交
39

40
Please **do not** create another Pull Request if you messed up your git commit records.
LinuxSuRen's avatar
LinuxSuRen 已提交
41

42
In order to generate nice [release notes](https://github.com/jenkins-zh/jenkins-cli/releases),
LinuxSuRen's avatar
LinuxSuRen 已提交
43 44 45
please consider writing a proper Pull Request title.
[release-draft](https://github.com/toolmantim/release-drafter) will generate the notes base your title.

46
## Quality
LinuxSuRen's avatar
LinuxSuRen 已提交
47

48 49
Quality is the heart of a project. So please make sure your Pull Request could pass the
[Sonar Quality Gate](https://sonarcloud.io/dashboard?id=jenkins-zh_jenkins-cli).
LinuxSuRen's avatar
LinuxSuRen 已提交
50 51 52 53 54 55 56 57 58 59 60 61 62 63 64

|Metric|Operator|Value|
|---|---|---|
|Coverage|is less than|90.0%|
|Duplicated Lines(%)|is greater than|3.0%|
|Maintainablity Rating|is worse than|A|
|Blocker Issues|is greater than|1|
|Code Smells|is greater than|1|
|Reliablity Rating|is worse than|A|
|Security Rating|is worse than|A|

## Good Start

The [newbie](https://github.com/jenkins-zh/jenkins-cli/issues?q=is%3Aissue+is%3Aopen+label%3Anewbie) issues
are the good start.
LinuxSuRen's avatar
LinuxSuRen 已提交
65 66 67 68 69

## Git Backup

We use [git-backup-actions](https://github.com/jenkins-zh/git-backup-actions/) to backup this repo into 
[gitee](https://gitee.com/jenkins-zh/jenkins-cli).
70 71 72 73

## Develop Environment

If you want to involve in this project, you need to execute the following command: `make tools`