forked from debops/debops
-
Notifications
You must be signed in to change notification settings - Fork 0
282 lines (223 loc) · 7.67 KB
/
continuous-integration.yml
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
---
# Copyright (C) 2021 Maciej Delmanowski <[email protected]>
# Copyright (C) 2021 DebOps <https://debops.org/>
# SPDX-License-Identifier: GPL-3.0-or-later
name: Continuous Integration
on: [ 'push', 'pull_request' ]
jobs:
reuse-spdx:
runs-on: 'ubuntu-20.04'
steps:
- name: Add ~/.local/bin to $PATH
run: 'printf "%s/.local/bin\n" "${HOME}" >> ${GITHUB_PATH}'
- name: Clone the repository
uses: 'actions/checkout@v2'
- name: Prepare test environment
run: |
pip3 install --user --upgrade pip wheel setuptools
pip3 install --user --upgrade reuse
- name: Check codebase with REUSE linter
run: |
reuse --version
make test-spdx
make check
ansible-lint:
runs-on: 'ubuntu-20.04'
steps:
- name: Add ~/.local/bin to $PATH
run: 'printf "%s/.local/bin\n" "${HOME}" >> ${GITHUB_PATH}'
- name: Clone the repository
uses: 'actions/checkout@v2'
- name: Prepare test environment
run: |
sudo apt-get remove --purge -yq ansible
pip3 install --upgrade pip wheel setuptools
pip3 install --user --upgrade ansible ansible-lint
- name: Verify playbook with ansible-lint
run: |
ansible-lint --version
make test-ansible-lint
make check
ansible-playbook:
runs-on: 'ubuntu-20.04'
steps:
- name: Add ~/.local/bin to $PATH
run: 'printf "%s/.local/bin\n" "${HOME}" >> ${GITHUB_PATH}'
- name: Clone the repository
uses: 'actions/checkout@v2'
- name: Prepare test environment
run: |
sudo apt-get remove --purge -yq ansible
pip3 install --user --upgrade pip wheel setuptools
pip3 install --user --upgrade ansible
- name: Check playbook syntax with ansible-playbook
run: |
ansible --version
make test-playbook-syntax
make check
ansible-galaxy:
runs-on: 'ubuntu-20.04'
steps:
- name: Add ~/.local/bin to $PATH
run: 'printf "%s/.local/bin\n" "${HOME}" >> ${GITHUB_PATH}'
- name: Clone the repository
uses: 'actions/checkout@v2'
with:
fetch-depth: 0
- name: Prepare test environment
run: |
sudo apt-get -qq update
sudo apt-get -yq install pandoc pandoc-data
sudo apt-get remove --purge -yq ansible
pip3 install --user --upgrade pip wheel setuptools
pip3 install --user --upgrade ansible ansible-lint yamllint galaxy-importer reuse
- name: Build DebOps Collections for Ansible Galaxy
env:
DEBOPS_VERSION: '0.0.0'
run: |
yamllint --version
ansible --version
ansible-lint --version
make collection
make check
yamllint:
runs-on: 'ubuntu-20.04'
steps:
- name: Add ~/.local/bin to $PATH
run: 'printf "%s/.local/bin\n" "${HOME}" >> ${GITHUB_PATH}'
- name: Clone the repository
uses: 'actions/checkout@v2'
- name: Prepare test environment
run: |
pip3 install --user --upgrade pip wheel setuptools
pip3 install --user --upgrade yamllint
- name: Check codebase with yamllint
run: |
yamllint --version
make test-yaml
make check
pycodestyle:
runs-on: 'ubuntu-20.04'
steps:
- name: Add ~/.local/bin to $PATH
run: 'printf "%s/.local/bin\n" "${HOME}" >> ${GITHUB_PATH}'
- name: Clone the repository
uses: 'actions/checkout@v2'
- name: Prepare test environment
run: |
pip3 install --user --upgrade pip wheel setuptools
pip3 install --user --upgrade pycodestyle
- name: Check codebase with pycodestyle
run: |
printf "pycodestyle %s\\n" "$(pycodestyle --version)"
make test-pep8
make check
shellcheck:
runs-on: 'ubuntu-20.04'
steps:
- name: Add ~/.local/bin to $PATH
run: 'printf "%s/.local/bin\n" "${HOME}" >> ${GITHUB_PATH}'
- name: Clone the repository
uses: 'actions/checkout@v2'
- name: Prepare test environment
run: |
sudo apt-get -qq update
sudo apt-get install -yq shellcheck
- name: Check shell scripts with shellcheck
run: |
shellcheck --version
make test-shell
make check
docker-image:
runs-on: 'ubuntu-20.04'
steps:
- name: Clone the repository
uses: 'actions/checkout@v2'
- name: Build and verify Docker image
# https://github.com/actions/runner/issues/241
shell: 'script -q -e -c "bash {0}"'
run: 'make test-docker-build'
debops-unit-test:
runs-on: 'ubuntu-20.04'
steps:
- name: Add ~/.local/bin to $PATH
run: 'printf "%s/.local/bin\n" "${HOME}" >> ${GITHUB_PATH}'
- name: Clone the repository
uses: 'actions/checkout@v2'
with:
fetch-depth: 0
- name: Prepare test environment
run: |
sudo apt-get -qq update
sudo apt-get -yq install python3-nose2
pip3 install --user --upgrade pip wheel setuptools pypandoc
pip3 install --user --upgrade cov-core future unittest2 pyyaml python-dotenv toml pyxdg jinja2
- name: Run DebOps unit tests
run: |
make clean-tests
#make test-debops-tools test-debops-ansible_plugins
make test-debops-ansible_plugins
make check
debops-wheel:
runs-on: 'ubuntu-20.04'
steps:
- name: Add ~/.local/bin to $PATH
run: 'printf "%s/.local/bin\n" "${HOME}" >> ${GITHUB_PATH}'
- name: Clone the repository
uses: 'actions/checkout@v2'
with:
fetch-depth: 0
- name: Prepare test environment
run: |
sudo apt-get -qq update
sudo apt-get -yq install pandoc pandoc-data graphviz
pip3 install --user --upgrade pip wheel setuptools pypandoc
pip3 install --user --upgrade sphinx sphinx-autobuild sphinx_rtd_theme
- name: Build DebOps Python wheel package
run: |
make clean-tests
make check
make test-man wheel-quiet
pip3 install --user dist/*
pip3 list | grep debops
debops-sdist:
runs-on: 'ubuntu-20.04'
steps:
- name: Add ~/.local/bin to $PATH
run: 'printf "%s/.local/bin\n" "${HOME}" >> ${GITHUB_PATH}'
- name: Clone the repository
uses: 'actions/checkout@v2'
with:
fetch-depth: 0
- name: Prepare test environment
run: |
sudo apt-get -qq update
sudo apt-get -yq install pandoc pandoc-data graphviz
pip3 install --user --upgrade pip wheel setuptools pypandoc
pip3 install --user --upgrade sphinx sphinx-autobuild sphinx_rtd_theme
- name: Build DebOps Python sdist package
run: |
make clean-tests
make check
make test-man sdist-quiet
pip3 install --user dist/*
pip3 list | grep debops
documentation:
runs-on: 'ubuntu-20.04'
steps:
- name: Add ~/.local/bin to $PATH
run: 'printf "%s/.local/bin\n" "${HOME}" >> ${GITHUB_PATH}'
- name: Clone the repository
uses: 'actions/checkout@v2'
- name: Prepare test environment
run: |
sudo apt-get -qq update
sudo apt-get install -yq graphviz
pip3 install --user --upgrade pip wheel setuptools
pip3 install --user --upgrade sphinx sphinx-autobuild sphinx_rtd-theme
- name: Build documentation site
run: |
sphinx-build --version
dot -V
make test-docs
make check