aboutsummaryrefslogtreecommitdiffstats
path: root/jobs/coverity.yml
blob: 74803c7f1db96593370a517c04d46537c7bbd60f (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
46
# compile and upload osmocom with coverity tools
- project:
    name: osmocom-coverity
    jobs:
      - osmocom-coverity

- job:
    name: 'osmocom-coverity'
    project-type: freestyle
    defaults: global
    description: 'Generated by job-builder'
    display-name: 'Coverity-Upload'
    node: coverity
    builders:
      - shell: |
          cd coverity
          export PATH=$PATH:/opt/coverity/current/bin
          ./jenkins.sh
    publishers:
      - email:
          recipients: 'jenkins-notifications@lists.osmocom.org'
          notify-every-unstable-build: true
    properties:
      - build-discarder:
          days-to-keep: 30
          num-to-keep: 30
    parameters:
      - string:
          name: BRANCH
          description: osmo-ci.git branch
          default: 'origin/master'
    scm:
      - git:
          url: https://gerrit.osmocom.org/osmo-ci
          git-config-name: 'Jenkins Builder'
          git-config-email: 'jenkins@osmocom.org'
          branches:
            - '$BRANCH'
    triggers:
      - timed: "@daily"
    publishers:
      - email:
          notify-every-unstable-build: true
          recipients: 'jenkins-notifications@lists.osmocom.org'

# vim: expandtab tabstop=2 shiftwidth=2