-
Notifications
You must be signed in to change notification settings - Fork 23
268 lines (236 loc) · 7.5 KB
/
test.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
name: test
on:
pull_request:
paths-ignore:
- "docs/**"
- README.md
workflow_dispatch:
inputs:
debug_enabled:
type: boolean
description: 'Run the build with tmate session (https://github.com/marketplace/actions/debugging-with-tmate)'
required: false
default: false
jobs:
build:
runs-on: ${{ matrix.runs-on }}
strategy:
fail-fast: false
matrix:
include:
- runs-on: ubuntu-20.04
python-version: "3.6"
- runs-on: ubuntu-latest
python-version: "3.7"
- runs-on: ubuntu-latest
python-version: "3.8"
- runs-on: ubuntu-latest
python-version: "3.9"
- runs-on: ubuntu-latest
python-version: "3.10"
steps:
- name: Checkout project
uses: actions/checkout@v3
- name: Install Poetry
run: make poetry
- name: Setup Python
uses: actions/setup-python@v4
with:
cache: poetry
python-version: ${{ matrix.python-version }}
- name: Build package
run: make build
install:
runs-on: ${{ matrix.runs-on }}
strategy:
fail-fast: false
matrix:
include:
- runs-on: ubuntu-20.04
openstack-version: yoga
python-version: "3.6"
- runs-on: ubuntu-latest
python-version: "3.8"
openstack-version: zed
- runs-on: ubuntu-latest
python-version: "3.8"
openstack-version: "2023.1"
steps:
- name: Checkout project
uses: actions/checkout@v3
- name: Install Poetry
run: make poetry
- name: Setup Python
uses: actions/setup-python@v4
with:
cache: poetry
python-version: ${{ matrix.python-version }}
- name: Build package
run: make build
- name: Install package using constraints
run: pip install --constraint https://releases.openstack.org/constraints/upper/${{ matrix.openstack-version }} ./dist/*.whl
black:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: psf/black@stable
flake8:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: "3.10"
- run: pipx install flake8
- uses: suo/flake8-github-action@releases/v1
with:
checkName: flake8
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
isort:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: "3.10"
- uses: isort/isort-action@master
unit:
runs-on: ${{ matrix.runs-on }}
strategy:
fail-fast: false
matrix:
include:
- runs-on: ubuntu-20.04
python-version: "3.6"
- runs-on: ubuntu-latest
python-version: "3.7"
- runs-on: ubuntu-latest
python-version: "3.8"
- runs-on: ubuntu-latest
python-version: "3.9"
- runs-on: ubuntu-latest
python-version: "3.10"
steps:
- name: Checkout project
uses: actions/checkout@v3
- name: Install Poetry
run: make poetry
- name: Setup Python
uses: actions/setup-python@v4
with:
cache: poetry
python-version: ${{ matrix.python-version }}
- name: Run unit tests
run: make unit-tests
build-images:
runs-on: v3-standard-4
if: contains(github.event.pull_request.body, '/build-new-image')
strategy:
fail-fast: false
matrix:
os_distro:
- ubuntu
- flatcar
kube:
- v1.24.16
- v1.25.12
- v1.26.10
- v1.27.7
- v1.28.3
concurrency:
group: build-images-${{ github.ref }}-${{ matrix.kube }}-${{ matrix.os_distro }}
cancel-in-progress: true
steps:
- name: Checkout project
uses: actions/checkout@v3
- name: Install Cluster API driver for Magnum
run: |
pip install -U setuptools pip
$HOME/.local/bin/pip3 install -e .
- name: Enable KVM group perms
run: |
echo 'KERNEL=="kvm", GROUP="kvm", MODE="0666", OPTIONS+="static_node=kvm"' | sudo tee /etc/udev/rules.d/99-kvm4all.rules
sudo udevadm control --reload-rules
sudo udevadm trigger --name-match=kvm
# - name: Setup tmate session
# uses: mxschmitt/action-tmate@v3
- name: Build image
timeout-minutes: 30
run: |
magnum-cluster-api-image-builder \
--operating-system ${{ matrix.os_distro }} \
--version ${{ matrix.kube }}
env:
PACKER_GITHUB_API_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Upload built image
uses: actions/upload-artifact@v3
with:
name: ${{ matrix.os_distro }}-kube-${{ matrix.kube }}.qcow2
path: ${{ matrix.os_distro }}-kube-${{ matrix.kube }}.qcow2
functional:
runs-on: v3-standard-16
strategy:
fail-fast: false
matrix:
os_distro:
- ubuntu
- flatcar
kube:
- v1.24.16
- v1.25.12
- v1.26.10
- v1.27.7
- v1.28.3
concurrency:
group: functional-${{ github.ref }}-${{ matrix.kube }}-${{ matrix.os_distro }}
cancel-in-progress: true
steps:
- name: Checkout project
uses: actions/checkout@v3
- name: Clean-up node
run: sudo apt-get purge -y postgresql* mysql-*
- name: Enable KVM group perms
run: |
echo 'KERNEL=="kvm", GROUP="kvm", MODE="0666", OPTIONS+="static_node=kvm"' | sudo tee /etc/udev/rules.d/99-kvm4all.rules
sudo udevadm control --reload-rules
sudo udevadm trigger --name-match=kvm
- name: Install Magnum with Cluster API
run: ./hack/stack.sh
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Wait for images
if: contains(github.event.pull_request.body, '/build-new-image')
uses: lewagon/[email protected]
with:
ref: ${{ github.event.pull_request.head.sha }}
check-name: "build-images (${{ matrix.os_distro }}, ${{ matrix.kube }})"
repo-token: ${{ secrets.GITHUB_TOKEN }}
wait-interval: 10
- name: Download built image
if: contains(github.event.pull_request.body, '/build-new-image')
uses: actions/download-artifact@v3
with:
name: ${{ matrix.os_distro }}-kube-${{ matrix.kube }}.qcow2
- name: Update environment variables for GitHub Hosted Runners
if: contains(runner.name, 'GitHub Actions')
run: |
echo "DNS_NAMESERVER=168.63.129.16" >> $GITHUB_ENV
- name: Run functional tests
run: |
./hack/run-functional-tests.sh
env:
BUILD_NEW_IMAGE: "${{ contains(github.event.pull_request.body, '/build-new-image') }}"
OS_DISTRO: "${{ matrix.os_distro }}"
KUBE_TAG: "${{ matrix.kube }}"
NODE_COUNT: 2
- name: Setup "tmate" session
if: github.event_name == 'workflow_dispatch' && inputs.debug_enabled && failure()
uses: mxschmitt/action-tmate@v3
- name: Upload Sonobuoy results
uses: actions/upload-artifact@v3
if: always()
continue-on-error: true
with:
name: "sonobuoy-results-${{ matrix.kube }}"
path: sonobuoy-results.tar.gz