summaryrefslogtreecommitdiffstats
path: root/.github/workflows/crmsh-ci.yml
blob: f58ebd9a9781271489af16faea1698f3f4beb110 (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
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
# This workflow will install Python dependencies, run tests and lint with a single version of Python
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions
# For more information about secrets see: https://docs.github.com/en/free-pro-team@latest/actions/reference/encrypted-secrets

name: crmsh CI

on:
  - pull_request
  - workflow_call

env:
  DOCKER_SCRIPT: ./test/run-functional-tests
  GET_INDEX_OF: ./test/run-functional-tests _get_index_of

jobs:
  general_check:
    runs-on: ubuntu-20.04
    steps:
    - uses: actions/checkout@v3
    - name: check data-manifest
      run: |
        ./update-data-manifest.sh
        output=`git --no-pager diff data-manifest`
        [[ -z $output ]] || {
                echo "$output"
                echo "A new version of data-manifest is needed."
                echo "Please run ./update-data-manifest.sh && git add ./data-manifest in your local environment and push the code again."
                exit 1
        }

  unit_test:
    runs-on: ubuntu-20.04
    strategy:
      matrix:
        python-version: ['3.6', '3.8', '3.10']
      fail-fast: false
    timeout-minutes: 5
    steps:
    - uses: actions/checkout@v3
    - name: Set up Python
      uses: actions/setup-python@v4
      with:
        python-version: ${{ matrix.python-version }}
    - name: Install dependencies
      run: |
        python -m pip install --upgrade pip
        pip install tox
    - name: Test with pytest in tox
      run: |
        tox -v -e${{ matrix.python-version }}

  functional_test_crm_report_bugs:
    runs-on: ubuntu-20.04
    timeout-minutes: 40
    steps:
    - uses: actions/checkout@v3
    - name: functional test for crm_report bugs
      run:  |
        echo '{ "exec-opts": ["native.cgroupdriver=systemd"] }' | sudo tee /etc/docker/daemon.json
        sudo systemctl restart docker.service
        index=`$GET_INDEX_OF crm_report_bugs`
        $DOCKER_SCRIPT $index && $DOCKER_SCRIPT -d && $DOCKER_SCRIPT $index -u
    - uses: codecov/codecov-action@v3

  functional_test_crm_report_normal:
    runs-on: ubuntu-20.04
    timeout-minutes: 40
    steps:
    - uses: actions/checkout@v3
    - name: functional test for crm_report normal
      run:  |
        echo '{ "exec-opts": ["native.cgroupdriver=systemd"] }' | sudo tee /etc/docker/daemon.json
        sudo systemctl restart docker.service
        index=`$GET_INDEX_OF crm_report_normal`
        $DOCKER_SCRIPT $index && $DOCKER_SCRIPT -d && $DOCKER_SCRIPT $index -u
    - uses: codecov/codecov-action@v3

  functional_test_bootstrap_bugs:
    runs-on: ubuntu-20.04
    timeout-minutes: 40
    steps:
    - uses: actions/checkout@v3
    - name: functional test for bootstrap bugs
      run:  |
        echo '{ "exec-opts": ["native.cgroupdriver=systemd"] }' | sudo tee /etc/docker/daemon.json
        sudo systemctl restart docker.service
        index=`$GET_INDEX_OF bootstrap_bugs`
        $DOCKER_SCRIPT $index
    - uses: codecov/codecov-action@v3

  functional_test_bootstrap_bugs_non_root:
    runs-on: ubuntu-20.04
    timeout-minutes: 40
    steps:
    - uses: actions/checkout@v3
    - name: functional test for bootstrap bugs, under non root user
      run:  |
        echo '{ "exec-opts": ["native.cgroupdriver=systemd"] }' | sudo tee /etc/docker/daemon.json
        sudo systemctl restart docker.service
        index=`$GET_INDEX_OF bootstrap_bugs`
        $DOCKER_SCRIPT $index -u
    - uses: codecov/codecov-action@v3

  functional_test_bootstrap_common:
    runs-on: ubuntu-20.04
    timeout-minutes: 40
    steps:
    - uses: actions/checkout@v3
    - name: functional test for bootstrap common
      run:  |
        echo '{ "exec-opts": ["native.cgroupdriver=systemd"] }' | sudo tee /etc/docker/daemon.json
        sudo systemctl restart docker.service
        index=`$GET_INDEX_OF bootstrap_init_join_remove`
        $DOCKER_SCRIPT $index
    - uses: codecov/codecov-action@v3

  functional_test_bootstrap_common_non_root:
    runs-on: ubuntu-20.04
    timeout-minutes: 40
    steps:
    - uses: actions/checkout@v3
    - name: functional test for bootstrap common, under non root user
      run:  |
        echo '{ "exec-opts": ["native.cgroupdriver=systemd"] }' | sudo tee /etc/docker/daemon.json
        sudo systemctl restart docker.service
        index=`$GET_INDEX_OF bootstrap_init_join_remove`
        $DOCKER_SCRIPT $index -u
    - uses: codecov/codecov-action@v3

  functional_test_bootstrap_options:
    runs-on: ubuntu-20.04
    timeout-minutes: 40
    steps:
    - uses: actions/checkout@v3
    - name: functional test for bootstrap options
      run:  |
        echo '{ "exec-opts": ["native.cgroupdriver=systemd"] }' | sudo tee /etc/docker/daemon.json
        sudo systemctl restart docker.service
        index=`$GET_INDEX_OF bootstrap_options`
        $DOCKER_SCRIPT $index
    - uses: codecov/codecov-action@v3

  functional_test_bootstrap_options_non_root:
    runs-on: ubuntu-20.04
    timeout-minutes: 40
    steps:
    - uses: actions/checkout@v3
    - name: functional test for bootstrap options, under non root user
      run:  |
        echo '{ "exec-opts": ["native.cgroupdriver=systemd"] }' | sudo tee /etc/docker/daemon.json
        sudo systemctl restart docker.service
        index=`$GET_INDEX_OF bootstrap_options`
        $DOCKER_SCRIPT $index -u
    - uses: codecov/codecov-action@v3

  functional_test_qdevice_setup_remove:
    runs-on: ubuntu-20.04
    timeout-minutes: 40
    steps:
    - uses: actions/checkout@v3
    - name: functional test for qdevice setup and remove
      run:  |
        echo '{ "exec-opts": ["native.cgroupdriver=systemd"] }' | sudo tee /etc/docker/daemon.json
        sudo systemctl restart docker.service
        index=`$GET_INDEX_OF qdevice_setup_remove`
        $DOCKER_SCRIPT $index
    - uses: codecov/codecov-action@v3

  functional_test_qdevice_setup_remove_non_root:
    runs-on: ubuntu-20.04
    timeout-minutes: 40
    steps:
    - uses: actions/checkout@v3
    - name: functional test for qdevice setup and remove, under non root user
      run:  |
        echo '{ "exec-opts": ["native.cgroupdriver=systemd"] }' | sudo tee /etc/docker/daemon.json
        sudo systemctl restart docker.service
        index=`$GET_INDEX_OF qdevice_setup_remove`
        $DOCKER_SCRIPT $index -u
    - uses: codecov/codecov-action@v3

  functional_test_qdevice_options:
    runs-on: ubuntu-20.04
    timeout-minutes: 40
    steps:
    - uses: actions/checkout@v3
    - name: functional test for qdevice options
      run:  |
        echo '{ "exec-opts": ["native.cgroupdriver=systemd"] }' | sudo tee /etc/docker/daemon.json
        sudo systemctl restart docker.service
        index=`$GET_INDEX_OF qdevice_options`
        $DOCKER_SCRIPT $index && $DOCKER_SCRIPT -d && $DOCKER_SCRIPT $index -u
    - uses: codecov/codecov-action@v3

  functional_test_qdevice_validate:
    runs-on: ubuntu-20.04
    timeout-minutes: 40
    steps:
    - uses: actions/checkout@v3
    - name: functional test for qdevice validate
      run:  |
        echo '{ "exec-opts": ["native.cgroupdriver=systemd"] }' | sudo tee /etc/docker/daemon.json
        sudo systemctl restart docker.service
        index=`$GET_INDEX_OF qdevice_validate`
        $DOCKER_SCRIPT $index
    - uses: codecov/codecov-action@v3

  functional_test_qdevice_validate_non_root:
    runs-on: ubuntu-20.04
    timeout-minutes: 40
    steps:
    - uses: actions/checkout@v3
    - name: functional test for qdevice validate, under non root user
      run:  |
        echo '{ "exec-opts": ["native.cgroupdriver=systemd"] }' | sudo tee /etc/docker/daemon.json
        sudo systemctl restart docker.service
        index=`$GET_INDEX_OF qdevice_validate`
        $DOCKER_SCRIPT $index -u
    - uses: codecov/codecov-action@v3

  functional_test_qdevice_user_case:
    runs-on: ubuntu-20.04
    timeout-minutes: 40
    steps:
    - uses: actions/checkout@v3
    - name: functional test for qdevice user case
      run:  |
        echo '{ "exec-opts": ["native.cgroupdriver=systemd"] }' | sudo tee /etc/docker/daemon.json
        sudo systemctl restart docker.service
        index=`$GET_INDEX_OF qdevice_usercase`
        $DOCKER_SCRIPT $index && $DOCKER_SCRIPT -d && $DOCKER_SCRIPT $index -u
    - uses: codecov/codecov-action@v3

  functional_test_resource_failcount:
    runs-on: ubuntu-20.04
    timeout-minutes: 40
    steps:
    - uses: actions/checkout@v3
    - name: functional test for resource failcount
      run:  |
        echo '{ "exec-opts": ["native.cgroupdriver=systemd"] }' | sudo tee /etc/docker/daemon.json
        sudo systemctl restart docker.service
        index=`$GET_INDEX_OF resource_failcount`
        $DOCKER_SCRIPT $index && $DOCKER_SCRIPT -d && $DOCKER_SCRIPT $index -u
    - uses: codecov/codecov-action@v3

  functional_test_resource_set:
    runs-on: ubuntu-20.04
    timeout-minutes: 40
    steps:
    - uses: actions/checkout@v3
    - name: functional test for resource set
      run:  |
        echo '{ "exec-opts": ["native.cgroupdriver=systemd"] }' | sudo tee /etc/docker/daemon.json
        sudo systemctl restart docker.service
        index=`$GET_INDEX_OF resource_set`
        $DOCKER_SCRIPT $index
    - uses: codecov/codecov-action@v3

  functional_test_resource_set_non_root:
    runs-on: ubuntu-20.04
    timeout-minutes: 40
    steps:
    - uses: actions/checkout@v3
    - name: functional test for resource set, under non root user
      run:  |
        echo '{ "exec-opts": ["native.cgroupdriver=systemd"] }' | sudo tee /etc/docker/daemon.json
        sudo systemctl restart docker.service
        index=`$GET_INDEX_OF resource_set`
        $DOCKER_SCRIPT $index -u
    - uses: codecov/codecov-action@v3

  functional_test_configure_sublevel:
    runs-on: ubuntu-20.04
    timeout-minutes: 40
    steps:
    - uses: actions/checkout@v3
    - name: functional test for configure sublevel bugs
      run:  |
        echo '{ "exec-opts": ["native.cgroupdriver=systemd"] }' | sudo tee /etc/docker/daemon.json
        sudo systemctl restart docker.service
        index=`$GET_INDEX_OF configure_bugs`
        $DOCKER_SCRIPT $index && $DOCKER_SCRIPT -d && $DOCKER_SCRIPT $index -u
    - uses: codecov/codecov-action@v3

  functional_test_constraints_bugs:
    runs-on: ubuntu-20.04
    timeout-minutes: 40
    steps:
    - uses: actions/checkout@v3
    - name: functional test for constraints bugs
      run:  |
        echo '{ "exec-opts": ["native.cgroupdriver=systemd"] }' | sudo tee /etc/docker/daemon.json
        sudo systemctl restart docker.service
        index=`$GET_INDEX_OF constraints_bugs`
        $DOCKER_SCRIPT $index && $DOCKER_SCRIPT -d && $DOCKER_SCRIPT $index -u
    - uses: codecov/codecov-action@v3

  functional_test_geo_cluster:
    runs-on: ubuntu-20.04
    timeout-minutes: 40
    steps:
    - uses: actions/checkout@v3
    - name: functional test for geo cluster
      run:  |
        echo '{ "exec-opts": ["native.cgroupdriver=systemd"] }' | sudo tee /etc/docker/daemon.json
        sudo systemctl restart docker.service
        index=`$GET_INDEX_OF geo_setup`
        $DOCKER_SCRIPT $index && $DOCKER_SCRIPT -d && $DOCKER_SCRIPT $index -u
    - uses: codecov/codecov-action@v3

  functional_test_healthcheck:
    runs-on: ubuntu-20.04
    timeout-minutes: 40
    steps:
    - uses: actions/checkout@v3
    - name: functional test for healthcheck
      run:  |
        echo '{ "exec-opts": ["native.cgroupdriver=systemd"] }' | sudo tee /etc/docker/daemon.json
        sudo systemctl restart docker.service
        index=`$GET_INDEX_OF healthcheck`
        $DOCKER_SCRIPT $index && $DOCKER_SCRIPT -d && $DOCKER_SCRIPT $index -u
    - uses: codecov/codecov-action@v3

  functional_test_cluster_api:
    runs-on: ubuntu-20.04
    timeout-minutes: 40
    steps:
    - uses: actions/checkout@v3
    - name: functional test for cluster api
      run:  |
        echo '{ "exec-opts": ["native.cgroupdriver=systemd"] }' | sudo tee /etc/docker/daemon.json
        sudo systemctl restart docker.service
        $DOCKER_SCRIPT `$GET_INDEX_OF cluster_api`
    - uses: codecov/codecov-action@v3

  functional_test_user_access:
    runs-on: ubuntu-20.04
    timeout-minutes: 40
    steps:
    - uses: actions/checkout@v3
    - name: functional test for user access
      run:  |
        echo '{ "exec-opts": ["native.cgroupdriver=systemd"] }' | sudo tee /etc/docker/daemon.json
        sudo systemctl restart docker.service
        $DOCKER_SCRIPT `$GET_INDEX_OF user_access`
    - uses: codecov/codecov-action@v3

  functional_test_ssh_agent:
    runs-on: ubuntu-20.04
    timeout-minutes: 40
    steps:
    - uses: actions/checkout@v3
    - name: functional test for user access
      run:  |
        echo '{ "exec-opts": ["native.cgroupdriver=systemd"] }' | sudo tee /etc/docker/daemon.json
        sudo systemctl restart docker.service
        $DOCKER_SCRIPT `$GET_INDEX_OF ssh_agent` && $DOCKER_SCRIPT -d && $DOCKER_SCRIPT -u `$GET_INDEX_OF ssh_agent`
    - uses: codecov/codecov-action@v3

  original_regression_test:
    runs-on: ubuntu-20.04
    timeout-minutes: 40
    steps:
    - uses: actions/checkout@v3
    - name: original regression test
      run:  |
        $DOCKER_SCRIPT `$GET_INDEX_OF "regression test"`