summaryrefslogtreecommitdiffstats
path: root/ansible_collections/hetzner/hcloud/.azure-pipelines/azure-pipelines.yml
blob: aaf5c21e6f6325c316f6c6c18f561488050e5692 (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
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
trigger:
  batch: true
  branches:
    include: [main, stable-1]

pr:
  autoCancel: true
  drafts: false
  branches:
    include: [main, stable-1]

schedules:
  - cron: 0 9 * * *
    displayName: Nightly
    always: true
    branches:
      include: [main, stable-1]

variables:
  - name: checkoutPath
    value: ansible_collections/hetzner/hcloud
  - name: coverageBranches
    value: main
  - name: pipelinesCoverage
    value: coverage
  - name: entryPoint
    value: tests/utils/ci.sh
  - name: fetchDepth
    value: 0

resources:
  containers:
    - container: default
      image: quay.io/ansible/azure-pipelines-test-container:4.0.1

pool: Standard

stages:
  ### Sanity
  - stage: Sanity_devel
    displayName: Sanity devel
    dependsOn: []
    jobs:
      - template: templates/matrix.yml
        parameters:
          targets:
            - name: Sanity
              test: devel/sanity

  - stage: Sanity_2_16
    displayName: Sanity 2.16
    dependsOn: []
    jobs:
      - template: templates/matrix.yml
        parameters:
          targets:
            - name: Sanity
              test: 2.16/sanity

  - stage: Sanity_2_15
    displayName: Sanity 2.15
    dependsOn: []
    jobs:
      - template: templates/matrix.yml
        parameters:
          targets:
            - name: Sanity
              test: 2.15/sanity

  - stage: Sanity_2_14
    displayName: Sanity 2.14
    dependsOn: []
    jobs:
      - template: templates/matrix.yml
        parameters:
          targets:
            - name: Sanity
              test: 2.14/sanity

  ### Units
  - stage: Units_devel
    displayName: Units devel
    dependsOn: []
    jobs:
      - template: templates/matrix.yml
        parameters:
          targets:
            - name: (py3.12)
              test: devel/units/3.12

  - stage: Units_2_16
    displayName: Units 2.16
    dependsOn: []
    jobs:
      - template: templates/matrix.yml
        parameters:
          targets:
            - name: (py3.10)
              test: 2.16/units/3.10

  - stage: Units_2_15
    displayName: Units 2.15
    dependsOn: []
    jobs:
      - template: templates/matrix.yml
        parameters:
          targets:
            - name: (py3.9)
              test: 2.15/units/3.9

  - stage: Units_2_14
    displayName: Units 2.14
    dependsOn: []
    jobs:
      - template: templates/matrix.yml
        parameters:
          targets:
            - name: (py3.9)
              test: 2.14/units/3.9

  ## Integration
  - stage: Integration_devel
    displayName: Integration devel
    dependsOn: []
    jobs:
      - template: templates/matrix.yml
        parameters:
          groups: [1, 2, 3]
          targets:
            - name: (py3.12)
              test: devel/integration/3.12

  - stage: Integration_2_16
    displayName: Integration 2.16
    dependsOn: []
    jobs:
      - template: templates/matrix.yml
        parameters:
          groups: [1, 2, 3]
          targets:
            - name: (py3.10)
              test: 2.16/integration/3.10

  - stage: Integration_2_15
    displayName: Integration 2.15
    dependsOn: []
    jobs:
      - template: templates/matrix.yml
        parameters:
          groups: [1, 2, 3]
          targets:
            - name: (py3.9)
              test: 2.15/integration/3.9

  - stage: Integration_2_14
    displayName: Integration 2.14
    dependsOn: []
    jobs:
      - template: templates/matrix.yml
        parameters:
          groups: [1, 2, 3]
          targets:
            - name: (py3.9)
              test: 2.14/integration/3.9

  ### Finally
  - stage: Summary
    condition: succeededOrFailed()
    dependsOn:
      - Sanity_devel
      - Sanity_2_16
      - Sanity_2_15
      - Sanity_2_14
      - Units_devel
      - Units_2_16
      - Units_2_15
      - Units_2_14
      - Integration_devel
      - Integration_2_16
      - Integration_2_15
      - Integration_2_14
    jobs:
      - template: templates/coverage.yml