Show More
@@ -0,0 +1,97 b'' | |||
|
1 | .. _integrations-ci: | |
|
2 | ||
|
3 | CI Server integration | |
|
4 | ===================== | |
|
5 | ||
|
6 | ||
|
7 | RhodeCode :ref:`integrations-webhook` integration is a powerfull tool to allow | |
|
8 | interaction with systems like Jenkin, Bamboo, TeamCity, CircleCi or any other | |
|
9 | CI server that allows triggering a build using HTTP call. | |
|
10 | ||
|
11 | Below are few examples on how to use :ref:`integrations-webhook` to trigger | |
|
12 | a CI build. | |
|
13 | ||
|
14 | ||
|
15 | General Webhook | |
|
16 | +++++++++++++++ | |
|
17 | ||
|
18 | :ref:`integrations-webhook` allows sending a JSON payload information to specified | |
|
19 | url with GET or POST methods. There are several variables that could be used | |
|
20 | in the URL greatly extending the flexibility of this type of integration. | |
|
21 | ||
|
22 | Most of the modern CI systems such as Jenkins, TeamCity, Bamboo or CircleCi | |
|
23 | allows triggering builds via GET or POST calls. | |
|
24 | ||
|
25 | :ref:`integrations-webhook` can be either specified per each repository or | |
|
26 | globally, if your CI maps directly to all your projects a global | |
|
27 | :ref:`integrations-webhook` integration can be created and will trigger builds | |
|
28 | for each change in projects. If only some projects allow triggering builds a | |
|
29 | global integration will also work because mostly a CI system will ignore a | |
|
30 | call for unspecified builds. | |
|
31 | ||
|
32 | ||
|
33 | .. note:: | |
|
34 | ||
|
35 | A quick note on security. It's recommended to allow IP restrictions | |
|
36 | to only allow RhodeCode server to trigger builds. If you need to | |
|
37 | specify username and password this could be done by embedding it into a | |
|
38 | trigger URL, e.g. `http://user:password@server.com/job/${project_id} | |
|
39 | ||
|
40 | ||
|
41 | If users require to provide any custom parameters, they can be stored for each | |
|
42 | project inside the :ref:`repo-xtra`. For example to migrate a current job that | |
|
43 | has a numeric build id, storing this as `jenkins_build_id` key extra field | |
|
44 | the url would look like that:: | |
|
45 | ||
|
46 | http://server/job/${extra:jenkins_build_id}/ | |
|
47 | ||
|
48 | ||
|
49 | .. note:: | |
|
50 | ||
|
51 | Please note that some variables will result in multiple calls. | |
|
52 | e.g. for |HG| specifying `${branch}` will trigger as many builds as how | |
|
53 | many branches the suer actually pushed. Same applies to `${commit_id}` | |
|
54 | This will trigger many builds if many commits are pushed. This allows | |
|
55 | triggering individual builds for each pushed commit. | |
|
56 | ||
|
57 | ||
|
58 | Jenkins | |
|
59 | +++++++ | |
|
60 | ||
|
61 | To use Jenkins CI with RhodeCode, a Jenkins Build with Parameters should be used. | |
|
62 | Plugin details are available here: https://wiki.jenkins.io/display/JENKINS/Build+With+Parameters+Plugin | |
|
63 | ||
|
64 | If the plugin is configured, RhodeCode can trigger builds automatically by | |
|
65 | calling such example url provided in :ref:`integrations-webhook` integration:: | |
|
66 | ||
|
67 | http://server/job/${project_id}/build-branch-${branch}/buildWithParameters?token=TOKEN&PARAMETER=value&PARAMETER2=value2 | |
|
68 | ||
|
69 | ||
|
70 | Team City | |
|
71 | +++++++++ | |
|
72 | ||
|
73 | To use TeamCity CI it's enough to call the API and provide a buildId. | |
|
74 | Example url after configuring :ref:`repo-xtra` would look like that:: | |
|
75 | ||
|
76 | http://teacmtiyserver/viewType.html?buildTypeId=${extra:tc_build_id} | |
|
77 | ||
|
78 | ||
|
79 | Each project can have many build configurations. | |
|
80 | buildTypeId which is a unique ID for each build configuration (job). | |
|
81 | ||
|
82 | ||
|
83 | CircleCi | |
|
84 | ++++++++ | |
|
85 | ||
|
86 | To use CircleCi, a POST call needs to be triggered. Example build url would | |
|
87 | look like this:: | |
|
88 | ||
|
89 | http://cicleCiServer/project/${repo_type}/${username}/${repo_id}/tree/${branch} | |
|
90 | ||
|
91 | ||
|
92 | Circle Ci expects format of:: | |
|
93 | ||
|
94 | POST: /project/:vcs-type/:username/:project/tree/:branch | |
|
95 | ||
|
96 | ||
|
97 | CircleCi API documentation can be found here: https://circleci.com/docs/api/v1-reference/ |
@@ -20,7 +20,7 b' and commit files and |repos| while manag' | |||
|
20 | 20 | * Migration from existing databases. |
|
21 | 21 | * |RCM| SDK. |
|
22 | 22 | * Built-in analytics |
|
23 |
* Built in integrations including: Slack, Jenkins |
|
|
23 | * Built in integrations including: Slack, Webhooks (used for Jenkins/TeamCity and other CIs), Jira, Redmine, Hipchat | |
|
24 | 24 | * Pluggable authentication system. |
|
25 | 25 | * Support for AD, |LDAP|, Crowd, CAS, PAM. |
|
26 | 26 | * Support for external authentication via Oauth Google, Github, Bitbucket, Twitter. |
@@ -17,7 +17,8 b' Type/Name |RC| Edi' | |||
|
17 | 17 | :ref:`integrations-slack` |RCCEshort| https://slack.com/ |
|
18 | 18 | :ref:`integrations-hipchat` |RCCEshort| https://www.hipchat.com/ |
|
19 | 19 | :ref:`integrations-webhook` |RCCEshort| POST events as `json` to a custom url |
|
20 |
:ref:`integrations- |
|
|
20 | :ref:`integrations-ci` |RCCEshort| Trigger Builds for Common CI Systems | |
|
21 | :ref:`integrations-email` |RCCEshort| Send repo push commits by email | |
|
21 | 22 | :ref:`integrations-redmine` |RCEEshort| Close/Resolve/Reference redmine issues |
|
22 | 23 | :ref:`integrations-jira` |RCEEshort| Close/Resolve/Reference JIRA issues |
|
23 | 24 | ============================ ============ ===================================== |
General Comments 0
You need to be logged in to leave comments.
Login now