aboutsummaryrefslogtreecommitdiffstats
path: root/jobs/update-osmo-ci-on-slaves.yml
blob: d47f08e64a15ba720175e75ad6137787e3437c03 (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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
- job:
    name: update-osmo-ci-on-slaves
    project-type: matrix
    axes:
      - axis:
          type: slave
          name: label
          values:
            - admin2-deb8build
            - admin2-deb9build
            - host2-deb8build-ansible
            - host2-deb9build-ansible
            - build2-deb8build-ansible
            - build2-deb9build-ansible
    properties:
      - build-discarder:
          days-to-keep: 30
          num-to-keep: 120
    scm:
      - git:
          url: git://git.osmocom.org/osmo-ci
          git-config-name: 'Jenkins Builder'
          git-config-email: 'jenkins@osmocom.org'
          skip-tag: true
          branches:
            - 'origin/master'

    triggers:
      - pollscm:
          cron: "H/5 * * * *"
          ignore-post-commit-hooks: false

    builders:
      - shell: './contrib/jenkins.sh'
    description: |
      <b>Auto-generated using Jenkins Job Builder. DO NOT EDIT MANUALLY!</b>

    publishers:
      - email:
          recipients: intern@lists.sysmocom.de

# Trigger from docker-playground.git too
- job:
    name: update-osmo-ci-on-slaves-dp
    description: |
      Trigger <a href="https://jenkins.osmocom.org/jenkins/job/update-osmo-ci-on-slaves/">update-osmo-ci-on-slaves</a>
      on changes in docker-playground.git, so it can rebuild docker containers relevant for the jenkins slaves.
    node: osmocom-master-debian9
    scm:
      - git:
          url: git://git.osmocom.org/docker-playground
          git-config-name: 'Jenkins Builder'
          git-config-email: 'jenkins@osmocom.org'
          skip-tag: true
          branches:
            - 'origin/master'
    triggers:
      - pollscm:
          cron: "H/5 * * * *"
          ignore-post-commit-hooks: false
    publishers:
      - trigger:
          project: "update-osmo-ci-on-slaves"


# vim: expandtab tabstop=2 shiftwidth=2