-
Notifications
You must be signed in to change notification settings - Fork 444
Expand file tree
/
Copy pathnightly-e2e-tests-subtensor-main.yml
More file actions
419 lines (370 loc) Β· 13.9 KB
/
nightly-e2e-tests-subtensor-main.yml
File metadata and controls
419 lines (370 loc) Β· 13.9 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
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
name: Nightly E2E Subtensor tests
permissions:
contents: read
packages: write
concurrency:
group: e2e-subtensor-${{ github.ref }}
cancel-in-progress: true
on:
schedule:
- cron: '0 9 * * *' # Run every night at 2:00 PST
workflow_dispatch:
inputs:
verbose:
description: "Output more information when triggered manually"
required: false
default: ""
env:
CARGO_TERM_COLOR: always
VERBOSE: ${{ github.event.inputs.verbose }}
# job to run tests in parallel
jobs:
# Looking for e2e tests
find-tests:
runs-on: ubuntu-latest
if: ${{ github.event_name != 'pull_request' || github.event.pull_request.draft == false }}
outputs:
test-files: ${{ steps.get-tests.outputs.test-files }}
steps:
- name: Check-out repository under $GITHUB_WORKSPACE
uses: actions/checkout@v4
- name: Find test files
id: get-tests
run: |
test_files=$(find tests/e2e_tests -name "test*.py" | jq -R -s -c 'split("\n") | map(select(. != ""))')
# keep it here for future debug
# test_files=$(find tests/e2e_tests -type f -name "test*.py" | grep -E 'test_(hotkeys|staking)\.py$' | jq -R -s -c 'split("\n") | map(select(. != ""))')
echo "Found test files: $test_files"
echo "test-files=$test_files" >> "$GITHUB_OUTPUT"
shell: bash
# Pull docker images (devnet-ready and main)
pull-docker-images:
runs-on: ubuntu-latest
steps:
- name: Log in to GitHub Container Registry
run: echo "${{ secrets.GITHUB_TOKEN }}" | docker login ghcr.io -u $GITHUB_ACTOR --password-stdin
- name: Pull Docker Image
run: |
docker pull ghcr.io/opentensor/subtensor-localnet:main
docker pull ghcr.io/opentensor/subtensor-localnet:devnet-ready
- name: List pulled images
run: docker images
- name: Save Docker Images to Cache
run: |
docker save -o subtensor-localnet-main.tar ghcr.io/opentensor/subtensor-localnet:main
docker save -o subtensor-localnet-devnet-ready.tar ghcr.io/opentensor/subtensor-localnet:devnet-ready
- name: Upload main Docker Image as Artifact
uses: actions/upload-artifact@v4
with:
name: subtensor-localnet-main
path: subtensor-localnet-main.tar
- name: Upload devnet-ready Docker Image as Artifact
uses: actions/upload-artifact@v4
with:
name: subtensor-localnet-devnet-ready
path: subtensor-localnet-devnet-ready.tar
# Determine the day for non-fast-blocks run
check-if-non-fast-blocks-run:
runs-on: ubuntu-latest
outputs:
non-fast-blocks-run: ${{ steps.check.outputs.non-fast-blocks-run }}
steps:
- id: check
run: |
if [ "${{ github.event_name }}" = "workflow_dispatch" ]; then
echo "π Manual trigger detected. Forcing non-fast-blocks-run=true"
echo "non-fast-blocks-run=true" >> "$GITHUB_OUTPUT"
else
day=$(date -u +%u)
echo "Today is weekday $day"
if [ "$day" -ne 6 ]; then
echo "βοΈ Skipping: not Saturday"
echo "non-fast-blocks-run=false" >> "$GITHUB_OUTPUT"
exit 0
fi
echo "β
It is Saturday"
echo "non-fast-blocks-run=true" >> "$GITHUB_OUTPUT"
fi
# Daily run of fast-blocks tests from `bittensor:master` based on `subtensor:main docker` image
run-fast-blocks-e2e-test-master:
name: "FB master: ${{ matrix.test-file }} / Python ${{ matrix.python-version }}"
needs:
- find-tests
- pull-docker-images
runs-on: ubuntu-latest
timeout-minutes: 25
outputs:
failed: ${{ steps.test-failed.outputs.failed }}
strategy:
fail-fast: false # Allow other matrix jobs to run even if this job fails
max-parallel: 32 # Set the maximum number of parallel jobs (same as we have cores in ubuntu-latest runner)
matrix:
os:
- ubuntu-latest
test-file: ${{ fromJson(needs.find-tests.outputs.test-files) }}
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
steps:
- name: Check-out repository
uses: actions/checkout@v4
with:
ref: master
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install uv
uses: astral-sh/setup-uv@v4
- name: install dependencies
run: uv sync --extra dev --dev
- name: Download Cached Docker Image
uses: actions/download-artifact@v4
with:
name: subtensor-localnet-main
- name: Load Docker Image
run: docker load -i subtensor-localnet-main.tar
- name: Run tests with retry
id: test-failed
env:
FAST_BLOCKS: "1"
LOCALNET_IMAGE_NAME: "ghcr.io/opentensor/subtensor-localnet:main"
run: |
set +e
for i in 1 2 3; do
echo "::group::π Test attempt $i"
uv run pytest ${{ matrix.test-file }} -s
status=$?
if [ $status -eq 0 ]; then
echo "β
Tests passed on attempt $i"
echo "::endgroup::"
echo "failed=false" >> "$GITHUB_OUTPUT"
break
else
echo "β Tests failed on attempt $i"
echo "::endgroup::"
if [ $i -eq 3 ]; then
echo "Tests failed after 3 attempts"
echo "failed=true" >> "$GITHUB_OUTPUT"
exit 1
fi
echo "Retrying..."
sleep 5
fi
done
# Daily run of fast-blocks tests from `bittensor:staging` based on `subtensor:devnet-ready` docker image
run-fast-blocks-e2e-test-staging:
name: "FB staging: ${{ matrix.test-file }} / Python ${{ matrix.python-version }}"
needs:
- find-tests
- pull-docker-images
runs-on: ubuntu-latest
timeout-minutes: 25
outputs:
failed: ${{ steps.test-failed.outputs.failed }}
strategy:
fail-fast: false # Allow other matrix jobs to run even if this job fails
max-parallel: 32 # Set the maximum number of parallel jobs (same as we have cores in ubuntu-latest runner)
matrix:
os:
- ubuntu-latest
test-file: ${{ fromJson(needs.find-tests.outputs.test-files) }}
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
steps:
- name: Check-out repository
uses: actions/checkout@v4
with:
ref: staging
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install uv
uses: astral-sh/setup-uv@v4
- name: install dependencies
run: uv sync --extra dev --dev
- name: Download Cached Docker Image
uses: actions/download-artifact@v4
with:
name: subtensor-localnet-devnet-ready
- name: Load Docker Image
run: docker load -i subtensor-localnet-devnet-ready.tar
- name: Run tests with retry
id: test-failed
env:
FAST_BLOCKS: "1"
LOCALNET_IMAGE_NAME: "ghcr.io/opentensor/subtensor-localnet:devnet-ready"
run: |
set +e
for i in 1 2 3; do
echo "::group::π Test attempt $i"
uv run pytest ${{ matrix.test-file }} -s
status=$?
if [ $status -eq 0 ]; then
echo "β
Tests passed on attempt $i"
echo "::endgroup::"
echo "failed=false" >> "$GITHUB_OUTPUT"
break
else
echo "β Tests failed on attempt $i"
echo "::endgroup::"
if [ $i -eq 3 ]; then
echo "Tests failed after 3 attempts"
echo "failed=true" >> "$GITHUB_OUTPUT"
exit 1
fi
echo "Retrying..."
sleep 5
fi
done
# Saturday run of non-fast-blocks tests from `bittensor:master` based on `subtensor:main` docker image
run-non-fast-blocks-e2e-test-master:
if: needs.check-if-non-fast-blocks-run.outputs.non-fast-blocks-run == 'true'
name: "NFB master: ${{ matrix.test-file }} / Python ${{ matrix.python-version }}"
needs:
- check-if-non-fast-blocks-run
- find-tests
- pull-docker-images
runs-on: ubuntu-latest
timeout-minutes: 1440
outputs:
failed: ${{ steps.test-failed.outputs.failed }}
strategy:
fail-fast: false # Allow other matrix jobs to run even if this job fails
max-parallel: 32 # Set the maximum number of parallel jobs (same as we have cores in ubuntu-latest runner)
matrix:
os:
- ubuntu-latest
test-file: ${{ fromJson(needs.find-tests.outputs.test-files) }}
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
steps:
- name: Check-out repository
uses: actions/checkout@v4
with:
ref: master
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install uv
uses: astral-sh/setup-uv@v4
- name: install dependencies
run: uv sync --extra dev --dev
- name: Download Cached Docker Image
uses: actions/download-artifact@v4
with:
name: subtensor-localnet-main
- name: Load Docker Image
run: docker load -i subtensor-localnet-main.tar
- name: Run patched E2E tests
id: test-failed
env:
FAST_BLOCKS: "0"
LOCALNET_IMAGE_NAME: "ghcr.io/opentensor/subtensor-localnet:main"
run: |
set +e
for i in 1 2 3; do
echo "::group::π Test attempt $i"
uv run pytest ${{ matrix.test-file }} -s
status=$?
if [ $status -eq 0 ]; then
echo "β
Tests passed on attempt $i"
echo "::endgroup::"
echo "failed=false" >> "$GITHUB_OUTPUT"
break
else
echo "β Tests failed on attempt $i"
echo "::endgroup::"
if [ $i -eq 3 ]; then
echo "Tests failed after 3 attempts"
echo "failed=true" >> "$GITHUB_OUTPUT"
exit 1
fi
echo "Retrying..."
sleep 5
fi
done
# Saturday run of non-fast-blocks tests from `bittensor:staging` based on `subtensor:devnet-ready` docker image
run-non-fast-blocks-e2e-test-staging:
if: needs.check-if-non-fast-blocks-run.outputs.non-fast-blocks-run == 'true'
name: "NFB staging: ${{ matrix.test-file }} / Python ${{ matrix.python-version }}"
needs:
- check-if-non-fast-blocks-run
- find-tests
- pull-docker-images
runs-on: ubuntu-latest
timeout-minutes: 1440
outputs:
failed: ${{ steps.test-failed.outputs.failed }}
strategy:
fail-fast: false # Allow other matrix jobs to run even if this job fails
max-parallel: 32 # Set the maximum number of parallel jobs (same as we have cores in ubuntu-latest runner)
matrix:
os:
- ubuntu-latest
test-file: ${{ fromJson(needs.find-tests.outputs.test-files) }}
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
steps:
- name: Check-out repository
uses: actions/checkout@v4
with:
ref: staging
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install uv
uses: astral-sh/setup-uv@v4
- name: install dependencies
run: uv sync --extra dev --dev
- name: Download Cached Docker Image
uses: actions/download-artifact@v4
with:
name: subtensor-localnet-devnet-ready
- name: Load Docker Image
run: docker load -i subtensor-localnet-devnet-ready.tar
- name: Run patched E2E tests
id: test-failed
env:
FAST_BLOCKS: "0"
LOCALNET_IMAGE_NAME: "ghcr.io/opentensor/subtensor-localnet:devnet-ready"
run: |
set +e
for i in 1 2 3; do
echo "::group::π Test attempt $i"
uv run pytest ${{ matrix.test-file }} -s
status=$?
if [ $status -eq 0 ]; then
echo "β
Tests passed on attempt $i"
echo "::endgroup::"
echo "failed=false" >> "$GITHUB_OUTPUT"
break
else
echo "β Tests failed on attempt $i"
echo "::endgroup::"
if [ $i -eq 3 ]; then
echo "Tests failed after 3 attempts"
echo "failed=true" >> "$GITHUB_OUTPUT"
exit 1
fi
echo "Retrying..."
sleep 5
fi
done
# Send centralized Discord failure notification
notify-on-failure:
needs:
- run-fast-blocks-e2e-test-master
- run-fast-blocks-e2e-test-staging
- run-non-fast-blocks-e2e-test-master
- run-non-fast-blocks-e2e-test-staging
if: |
needs.run-fast-blocks-e2e-test-master.outputs.failed == 'true' ||
needs.run-fast-blocks-e2e-test-staging.outputs.failed == 'true' ||
needs.run-non-fast-blocks-e2e-test-master.outputs.failed == 'true' ||
needs.run-non-fast-blocks-e2e-test-staging.outputs.failed == 'true'
runs-on: ubuntu-latest
steps:
- name: Send centralized Discord failure notification
run: |
curl -X POST -H "Content-Type: application/json" \
-d "{\"username\": \"Nightly CI\", \"content\": \"β Nightly E2E tests failed. Check run: <${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}>\"}" \
"${{ secrets.NIGHTLY_WEBHOOK_URL }}"