summaryrefslogtreecommitdiffstats
path: root/jjb/functest/xtesting-ci-vm.yaml
blob: 8ab1c03bfc8e66ddc9c7af0b8b06d5e82367313d (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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
---
- scm:
    name: xtesting-ci-vm-scm
    scm:
      - git:
          url: https://github.com/collivier/ansible-role-xtesting.git
          branches:
            - master
          git-config-name:
          git-config-email:

- scm:
    name: xtesting-vm-scm
    scm:
      - git:
          url: https://git.opnfv.org/functest-xtesting.git
          branches:
            - master
          git-config-name:
          git-config-email:

- scm:
    name: functest-vm-scm
    scm:
      - git:
          url: https://git.opnfv.org/functest.git
          branches:
            - master
          git-config-name:
          git-config-email:

- scm:
    name: functest-kubernetes-vm-scm
    scm:
      - git:
          url: https://git.opnfv.org/functest-kubernetes.git
          branches:
            - master
          git-config-name:
          git-config-email:

- builder:
    name: xtesting-ci-vm-builder
    builders:
      - shell: |
          curl https://packages.cloud.google.com/apt/doc/apt-key.gpg | sudo apt-key add -
          echo "deb https://packages.cloud.google.com/apt cloud-sdk main" | sudo tee \
            /etc/apt/sources.list.d/google-cloud-sdk.list
          sudo apt-get -o DPkg::Lock::Timeout=300 update && \
          DEBIAN_FRONTEND=noninteractive sudo apt-get \
            -o DPkg::Lock::Timeout=300 install python3-diskimage-builder -y
          export ELEMENTS_PATH=$(pwd)/elements
          disk-image-create --image-size 20 -o {project}-{version}.qcow2 debian vm {project}
          gsutil cp xtestingci-{version}.qcow2 gs://artifacts.opnfv.org/{project}/{project}-{version}.qcow2

- trigger:
    name: xtesting-ci-vm-trigger
    triggers:
      - timed: '@daily'

- parameter:
    name: xtesting-ci-vm-parameter
    parameters:
      - label:
          name: node
          default: 'opnfv-build'

- job-template:
    name: 'xtesting-ci-vm'
    scm:
      - xtesting-ci-vm-scm
    triggers:
      - xtesting-ci-vm-trigger
    parameters:
      - xtesting-ci-vm-parameter
    properties:
      - build-blocker:
          use-build-blocker: true
          blocking-level: 'NODE'
          blocking-jobs:
            - '^.*-vm$'
    builders:
      - xtesting-ci-vm-builder:
          project: xtestingci
          version: 4.1.0

- job-template:
    name: 'xtesting-vm'
    scm:
      - xtesting-vm-scm
    triggers:
      - xtesting-ci-vm-trigger
    parameters:
      - xtesting-ci-vm-parameter
    builders:
      - xtesting-ci-vm-builder:
          project: xtesting
          version: latest

- job-template:
    name: 'functest-vm'
    scm:
      - functest-vm-scm
    triggers:
      - xtesting-ci-vm-trigger
    parameters:
      - xtesting-ci-vm-parameter
    builders:
      - xtesting-ci-vm-builder:
          project: functest
          version: latest

- job-template:
    name: 'functest-kubernetes-vm'
    scm:
      - functest-kubernetes-vm-scm
    triggers:
      - xtesting-ci-vm-trigger
    parameters:
      - xtesting-ci-vm-parameter
    builders:
      - xtesting-ci-vm-builder:
          project: functest-kubernetes
          version: latest

- project:
    name: 'xtesting-ci-vm'
    jobs:
      - 'xtesting-ci-vm'
      - 'xtesting-vm'
      - 'functest-vm'
      - 'functest-kubernetes-vm'

- view:
    name: xtesting-ci-vm
    view-type: list
    columns:
      - status
      - weather
      - job
      - last-success
      - last-failure
      - last-duration
    regex: ^.*-vm$