aboutsummaryrefslogtreecommitdiffstats
path: root/jobs/gerrit-verifications-comment.yml
blob: 3ed54ad0d8f8f7b255531b34d97e845eb7e1665c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
# This job runs at the start/end of the pipeline in gerrit-verifications.yml.
# On start it posts a link to the pipeline to gerrit, and on end a list of
# failed/successful job links together with a vote +V/-V.

- project:
    name: gerrit-verifications-comment
    jobs:
      - 'gerrit-verifications-comment'

- job:
    name: 'gerrit-verifications-comment'
    project-type: freestyle
    node: osmocom-gerrit
    retry-count: 3 # scm checkout
    properties:
      - build-discarder:
          days-to-keep: 30
          num-to-keep: 120
    description: |
      Send start and result comments to <a href="https://gerrit.osmocom.org">gerrit</a>.
      </br></br>
      Related issue: <a href="https://osmocom.org/issues/2385">OS#2385</a>

    parameters:
      !include: gerrit-verifications-parameters.yaml.inc

    scm:
      - git:
         url: 'https://gerrit.osmocom.org/osmo-ci'
         credentials-id: d5eda5e9-b59d-44ba-88d2-43473cb6e42d
         branches:
           - '$BRANCH_CI'
         wipe-workspace: true

    builders:
      - shell: 'cd scripts/jenkins-gerrit && ./comment_send.sh'

    wrappers:
    - ansicolor:
        colormap: xterm
    - ssh-agent-credentials:
        users:
        - d5eda5e9-b59d-44ba-88d2-43473cb6e42d

# vim: expandtab tabstop=2 shiftwidth=2