-
Notifications
You must be signed in to change notification settings - Fork 551
269 lines (228 loc) · 7.79 KB
/
main.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
---
name: CI
# NOTE(romcheg): Controls when the action will run. Triggers the workflow on
# push or pull request events but only for the ng branch
on:
push:
branches: [ ng ]
pull_request:
branches: [ ng ]
jobs:
code_style:
name: Code style
runs-on: ubuntu-20.04
steps:
- name: Checkout source code
uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: 3.6
- name: Downgrade pip
run: pip3 install pip==19.3.1
- name: Cache pip dependencies
uses: actions/cache@v2
with:
path: ~/.cache/pip
key: ${{ runner.os }}-pip-${{ hashFiles('base.txt', 'dev.txt', 'docs.txt', 'hermes.txt', 'openstack.txt', 'prod.txt', 'prod_ldap.txt', '', 'test.txt') }}
restore-keys: |
${{ runner.os }}-pip-
${{ runner.os }}-
- name: Install Ralph's python dependencies
run: pip3 install -r "${GITHUB_WORKSPACE}/requirements/code_style.txt"
- name: Run flake8
run: make flake
missing_migrations:
name: Missing migrations
runs-on: ubuntu-20.04
strategy:
matrix:
db-engine: ["psql", "mysql"]
env:
TEST_DB_ENGINE: ${{ matrix.db-engine }}
services:
postgres:
image: postgres:9.4.26
env:
POSTGRES_USER: ralph_ng
POSTGRES_PASSWORD: ralph_ng
ports:
- 5432:5432
options: >-
--health-cmd pg_isready
--health-interval 10s
--health-timeout 5s
--health-retries 5
# NOTE(romcheg): Running mysql image of a more recent version will cause user
# ralph_ng to not being able to create a test database.
mysql:
image: mysql:5.6.45
env:
MYSQL_ROOT_PASSWORD: root
MYSQL_USER: ralph_ng
MYSQL_PASSWORD: ralph_ng
MYSQL_DATABASE: ralph_ng
ports:
- 3306:3306
options: >-
--health-cmd "mysqladmin ping --silent"
--health-interval 10s
--health-timeout 5s
--health-retries 5
steps:
- name: Checkout source code
uses: actions/checkout@v2
- name: Unshallow local copy
run: git fetch --prune --unshallow
- name: Install system packages
run: |
sudo apt-get update
sudo apt-get -y --no-install-recommends install libldap2-dev libsasl2-dev
env:
DEBIAN_FRONDEND: NONINTERACTIVE
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: 3.6
- name: Downgrade pip
run: pip3 install pip==19.3.1
- name: Install Ralph
run: pip3 install "${GITHUB_WORKSPACE}"
- name: Cache pip dependencies
uses: actions/cache@v2
with:
path: ~/.cache/pip
key: ${{ runner.os }}-pip-${{ hashFiles('base.txt', 'code_style.txt', 'dev.txt', 'docs.txt', 'hermes.txt', 'openstack.txt', 'prod.txt', 'prod_ldap.txt', '', 'test.txt') }}
restore-keys: |
${{ runner.os }}-pip-
${{ runner.os }}-
- name: Install Ralph's python dependencies
run: pip3 install -r "${GITHUB_WORKSPACE}/requirements/test.txt"
- name: Install PostgreSQL driver
if: ${{ matrix.db-engine == 'psql' }}
run: pip3 install psycopg2-binary
# Runs a set of commands using the runners shell
- name: Check missings migrations
run: "${GITHUB_WORKSPACE}/scripts/check_missing_migrations.sh"
settings_test:
name: Settings tests
runs-on: ubuntu-20.04
steps:
- name: Checkout source code
uses: actions/checkout@v2
- name: Unshallow local copy
run: git fetch --prune --unshallow
- name: Install system packages
run: |
sudo apt-get update
sudo apt-get -y --no-install-recommends install libldap2-dev libsasl2-dev
env:
DEBIAN_FRONDEND: NONINTERACTIVE
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: 3.6
- name: Downgrade pip
run: pip3 install pip==19.3.1
- name: Install Ralph
run: pip3 install "${GITHUB_WORKSPACE}"
- name: Cache pip dependencies
uses: actions/cache@v2
with:
path: ~/.cache/pip
key: ${{ runner.os }}-pip-${{ hashFiles('base.txt', 'code_style.txt', 'dev.txt', 'docs.txt', 'hermes.txt', 'openstack.txt', 'prod.txt', 'prod_ldap.txt', '', 'test.txt') }}
restore-keys: |
${{ runner.os }}-pip-
${{ runner.os }}-
- name: Install Ralph's python dependencies
run: |
pip3 install -r "${GITHUB_WORKSPACE}/requirements/test.txt"
pip3 install -r "${GITHUB_WORKSPACE}/requirements/openstack.txt"
- name: Test Ralph's settings
run: ./scripts/test_settings.sh prod test >/dev/null
python_tests:
name: Python tests
runs-on: ubuntu-20.04
strategy:
matrix:
python-version: [3.6]
db-engine: ["psql", "mysql"]
env:
TEST_DB_ENGINE: ${{ matrix.db-engine }}
DATABASE_USER: ralph_ng
DATABASE_PASSWORD: ralph_ng
services:
redis:
image: redis
ports:
- 6379:6379
options: >-
--health-cmd "redis-cli ping"
--health-interval 10s
--health-timeout 5s
postgres:
image: postgres:9.4.26
env:
POSTGRES_USER: ralph_ng
POSTGRES_PASSWORD: ralph_ng
ports:
- 5432:5432
options: >-
--health-cmd pg_isready
--health-interval 10s
--health-timeout 5s
--health-retries 5
# NOTE(romcheg): See the note regarging the mysql service above.
mysql:
image: mysql:5.6.45
env:
MYSQL_ROOT_PASSWORD: root
MYSQL_USER: ralph_ng
MYSQL_PASSWORD: ralph_ng
MYSQL_DATABASE: ralph_ng
ports:
- 3306:3306
options: >-
--health-cmd "mysqladmin ping --silent"
--health-interval 10s
--health-timeout 5s
--health-retries 5
steps:
- name: Checkout source code
uses: actions/checkout@v2
- name: Unshallow local copy
run: git fetch --prune --unshallow
- name: Install system packages
run: |
sudo apt-get update
sudo apt-get -y --no-install-recommends install libldap2-dev libsasl2-dev
env:
DEBIAN_FRONDEND: NONINTERACTIVE
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Downgrade pip
run: pip3 install pip==19.3.1
- name: Install Ralph
run: pip3 install "${GITHUB_WORKSPACE}"
- name: Cache pip dependencies
uses: actions/cache@v2
with:
path: ~/.cache/pip
key: ${{ runner.os }}-pip-${{ hashFiles('base.txt', 'code_style.txt', 'dev.txt', 'docs.txt', 'hermes.txt', 'openstack.txt', 'prod.txt', 'prod_ldap.txt', '', 'test.txt') }}
restore-keys: |
${{ runner.os }}-pip-
${{ runner.os }}-
- name: Install Ralph's python dependencies
run: |
pip3 install -r "${GITHUB_WORKSPACE}/requirements/test.txt"
pip3 install -r "${GITHUB_WORKSPACE}/requirements/openstack.txt"
- name: Install PostgreSQL driver
if: ${{ matrix.db-engine == 'psql' }}
run: pip3 install psycopg2-binary
- name: Test ralph_dchp_agent using python-${{ matrix.python-version }}
run: python contrib/dhcp_agent/test.py
- name: Test Ralph with coverage using python-${{ matrix.python-version }}
run: make coverage
...