forked from OpenMined/PySyft
-
Notifications
You must be signed in to change notification settings - Fork 0
404 lines (343 loc) · 12.3 KB
/
stack-integration_tests.yml
File metadata and controls
404 lines (343 loc) · 12.3 KB
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
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
# Stack Integration Tests
name: Syft + Grid Stack Integration Tests
on:
# schedule:
# - cron: "0 22 * * *" # 7pm Brazil, 10pm UTC, 8am AEST
pull_request:
branches:
- dev
- main
- "0.6.0"
workflow_dispatch:
inputs:
none:
description: "Run Version Tests Manually"
required: false
jobs:
stack-integration-tests:
strategy:
max-parallel: 3
matrix:
os: [ubuntu-latest]
python-version: [3.9]
runs-on: ${{matrix.os}}
steps:
- uses: actions/checkout@v2
- name: Check for file changes
uses: dorny/paths-filter@v2
id: changes
with:
token: ${{ github.token }}
filters: .github/file-filters.yml
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
if: steps.changes.outputs.stack == 'true'
with:
python-version: ${{ matrix.python-version }}
- name: Get pip cache dir
if: steps.changes.outputs.stack == 'true'
id: pip-cache
run: |
echo "::set-output name=dir::$(pip cache dir)"
- name: pip cache
uses: actions/cache@v2
if: steps.changes.outputs.stack == 'true'
with:
path: ${{ steps.pip-cache.outputs.dir }}
key: ${{ runner.os }}-pip-py${{ matrix.python-version }}
restore-keys: |
${{ runner.os }}-pip-py${{ matrix.python-version }}
- name: Upgrade pip
if: steps.changes.outputs.stack == 'true'
run: |
pip install --upgrade --user pip
- name: Install tox
if: steps.changes.outputs.stack == 'true'
run: |
pip install tox --upgrade
- name: Install Docker Compose
if: runner.os == 'Linux'
shell: bash
run: |
mkdir -p ~/.docker/cli-plugins
DOCKER_COMPOSE_VERSION=v2.1.1
curl -sSL https://github.com/docker/compose/releases/download/${DOCKER_COMPOSE_VERSION}/docker-compose-linux-x86_64 -o ~/.docker/cli-plugins/docker-compose
chmod +x ~/.docker/cli-plugins/docker-compose
- name: Run integration tests
if: steps.changes.outputs.stack == 'true'
timeout-minutes: 30
run: |
tox -e stack.test.integration
stack-integration-tests-tls:
strategy:
max-parallel: 3
matrix:
os: [ubuntu-latest]
python-version: [3.9]
runs-on: ${{matrix.os}}
steps:
- uses: actions/checkout@v2
- name: Check for file changes
uses: dorny/paths-filter@v2
id: changes
with:
token: ${{ github.token }}
filters: .github/file-filters.yml
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
if: steps.changes.outputs.stack == 'true'
with:
python-version: ${{ matrix.python-version }}
- name: Get pip cache dir
if: steps.changes.outputs.stack == 'true'
id: pip-cache
run: |
echo "::set-output name=dir::$(pip cache dir)"
- name: pip cache
uses: actions/cache@v2
if: steps.changes.outputs.stack == 'true'
with:
path: ${{ steps.pip-cache.outputs.dir }}
key: ${{ runner.os }}-pip-py${{ matrix.python-version }}
restore-keys: |
${{ runner.os }}-pip-py${{ matrix.python-version }}
- name: Upgrade pip
if: steps.changes.outputs.stack == 'true'
run: |
pip install --upgrade --user pip
- name: Install tox
if: steps.changes.outputs.stack == 'true'
run: |
pip install tox --upgrade
- name: Install Docker Compose
if: runner.os == 'Linux'
shell: bash
run: |
mkdir -p ~/.docker/cli-plugins
DOCKER_COMPOSE_VERSION=v2.1.1
curl -sSL https://github.com/docker/compose/releases/download/${DOCKER_COMPOSE_VERSION}/docker-compose-linux-x86_64 -o ~/.docker/cli-plugins/docker-compose
chmod +x ~/.docker/cli-plugins/docker-compose
- name: Install mkcert
if: runner.os == 'Linux'
shell: bash
run: |
sudo apt install libnss3-tools -y
MKCERT_VERSION=v1.4.3
curl -sSL https://github.com/FiloSottile/mkcert/releases/download/${MKCERT_VERSION}/mkcert-${MKCERT_VERSION}-linux-amd64 -o /usr/local/bin/mkcert
chmod +x /usr/local/bin/mkcert
which mkcert
- name: Run integration tests
if: steps.changes.outputs.stack == 'true'
timeout-minutes: 30
run: |
tox -e stack.test.integration.tls
stack-integration-tests-windows:
strategy:
max-parallel: 3
matrix:
os: [Windows-10]
python-version: [3.9]
runs-on: [self-hosted, windows]
steps:
- name: Stop all running containers
continue-on-error: true
run: |
powershell.exe -command "docker rm $(docker ps -aq) --force"
shell: cmd
- name: Prune all volumes
continue-on-error: true
run: |
powershell.exe -command "docker volume prune --force"
shell: cmd
- uses: actions/checkout@v2
- name: Check for file changes
uses: dorny/paths-filter@v2
id: changes
with:
token: ${{ github.token }}
filters: .github/file-filters.yml
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
if: steps.changes.outputs.stack == 'true'
with:
python-version: ${{ matrix.python-version }}
- name: Get pip cache dir
if: steps.changes.outputs.stack == 'true'
id: pip-cache
run: |
echo "::set-output name=dir::$(pip cache dir)"
shell: cmd
# - name: pip cache
# uses: actions/cache@v2
# if: steps.changes.outputs.stack == 'true'
# with:
# path: ${{ steps.pip-cache.outputs.dir }}
# key: ${{ runner.os }}-pip-py${{ matrix.python-version }}
# restore-keys: |
# ${{ runner.os }}-pip-py${{ matrix.python-version }}
- name: Upgrade pip
if: steps.changes.outputs.stack == 'true'
run: |
pip install --upgrade --user pip
shell: cmd
- name: Install tox
if: steps.changes.outputs.stack == 'true'
run: |
pip install tox --upgrade
shell: cmd
- name: Start stacks
if: steps.changes.outputs.stack == 'true'
timeout-minutes: 30
env:
HAGRID_ART: false
run: |
pip install -e packages/hagrid
set HAGRID_ART=false
hagrid launch test_network_1 network to docker:9081 --tail=false --headless=true
hagrid launch test_domain_1 domain to docker:9082 --tail=false --headless=true
hagrid launch test_domain_2 domain to docker:9083 --tail=false --build=false --headless=true
bash -c "(docker logs test_domain_1-backend_stream-1 -f &) | grep -q 'Application startup complete' || true"
bash -c "(docker logs test_domain_2-backend_stream-1 -f &) | grep -q 'Application startup complete' || true"
bash -c "(docker logs test_network_1-backend_stream-1 -f &) | grep -q 'Application startup complete' || true"
docker ps
shell: cmd
- name: Run integration tests
if: steps.changes.outputs.stack == 'true'
timeout-minutes: 30
env:
HAGRID_ART: false
run: |
tox -e stack.test.integration.windows
shell: cmd
- name: Stop all running containers
if: steps.changes.outputs.stack == 'true'
continue-on-error: true
run: |
powershell.exe -command "docker rm $(docker ps -aq) --force"
shell: cmd
- name: Prune all volumes
if: steps.changes.outputs.stack == 'true'
continue-on-error: true
run: |
powershell.exe -command "docker volume prune --force"
shell: cmd
stack-integration-tests-smpc:
strategy:
max-parallel: 3
matrix:
os: [ubuntu-latest]
python-version: [3.9]
runs-on: [self-hosted, linux]
steps:
- name: set permissions on work folder for self-runners
run: |
sudo chown -R $USER:$USER ~/actions-runner/_work/
- uses: actions/checkout@v2
- name: Check for file changes
uses: dorny/paths-filter@v2
id: changes
with:
token: ${{ github.token }}
filters: .github/file-filters.yml
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
if: steps.changes.outputs.stack == 'true'
with:
python-version: ${{ matrix.python-version }}
- name: Get pip cache dir
if: steps.changes.outputs.stack == 'true'
id: pip-cache
run: |
echo "::set-output name=dir::$(pip cache dir)"
- name: pip cache
uses: actions/cache@v2
if: steps.changes.outputs.stack == 'true'
with:
path: ${{ steps.pip-cache.outputs.dir }}
key: ${{ runner.os }}-pip-py${{ matrix.python-version }}
restore-keys: |
${{ runner.os }}-pip-py${{ matrix.python-version }}
- name: Upgrade pip
if: steps.changes.outputs.stack == 'true'
run: |
pip install --upgrade --user pip
- name: Install tox
if: steps.changes.outputs.stack == 'true'
run: |
pip install tox --upgrade
- name: docker cache
uses: actions/cache@v2
if: steps.changes.outputs.stack == 'true'
continue-on-error: true
with:
path: .docker-cache
key: ${{ runner.os }}-docker
restore-keys: |
${{ runner.os }}-docker
- name: Run integration tests
if: steps.changes.outputs.stack == 'true'
shell: bash
run: |
mkdir -p ~/.docker/cli-plugins
DOCKER_COMPOSE_VERSION=v2.1.1
curl -sSL https://github.com/docker/compose/releases/download/${DOCKER_COMPOSE_VERSION}/docker-compose-linux-x86_64 -o ~/.docker/cli-plugins/docker-compose
chmod +x ~/.docker/cli-plugins/docker-compose
docker rm `docker ps -aq` --force || true
rm -rf .tox
tox -e stack.test.integration.smpc
docker rm `docker ps -aq` --force || true
docker system prune --volumes --force || true
stack-integration-tests-k8s:
strategy:
max-parallel: 3
matrix:
os: [ubuntu-latest]
python-version: [3.9]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
- name: Check for file changes
uses: dorny/paths-filter@v2
id: changes
with:
token: ${{ github.token }}
filters: .github/file-filters.yml
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
if: steps.changes.outputs.stack == 'true'
with:
python-version: ${{ matrix.python-version }}
- name: Get pip cache dir
if: steps.changes.outputs.stack == 'true'
id: pip-cache
run: |
echo "::set-output name=dir::$(pip cache dir)"
- name: pip cache
uses: actions/cache@v2
if: steps.changes.outputs.stack == 'true'
with:
path: ${{ steps.pip-cache.outputs.dir }}
key: ${{ runner.os }}-pip-py${{ matrix.python-version }}
restore-keys: |
${{ runner.os }}-pip-py${{ matrix.python-version }}
- name: Upgrade pip
if: steps.changes.outputs.stack == 'true'
run: |
pip install --upgrade --user pip
- name: Install tox
if: steps.changes.outputs.stack == 'true'
run: |
pip install tox --upgrade
- name: Run integration tests
if: steps.changes.outputs.stack == 'true'
shell: bash
run: |
# replace minikube with an older version
wget https://github.com/kubernetes/minikube/releases/download/v1.23.2/minikube-linux-amd64
mv minikube-linux-amd64 minikube
chmod +x minikube
export PATH=`pwd`:$PATH
minikube version
curl -s -L "https://github.com/loft-sh/devspace/releases/latest" | sed -nE 's!.*"([^"]*devspace-linux-amd64)".*!https://github.com\1!p' | xargs -n 1 curl -L -o devspace && chmod +x devspace;
sudo install devspace /usr/local/bin;
tox -e stack.test.integration.k8s