-
Notifications
You must be signed in to change notification settings - Fork 42
426 lines (385 loc) · 12.2 KB
/
crawler.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
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
420
421
422
423
424
425
426
name: "Check PR"
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
concurrency:
group: ${{ github.repository }}-${{ github.ref }}-main
cancel-in-progress: true
env:
REPOSITORY_TYPE: public
jobs:
install-dependencies:
name: Installing dependencies
runs-on: ubuntu-latest
timeout-minutes: 5
steps:
- uses: actions/checkout@v4
- name: Setup FIPL environment
uses: fipl-hse/[email protected]
- name: Confirming everything is OK
run: |
ls -la venv
pr-name-check:
name: PR name check
runs-on: ubuntu-latest
if: github.event_name == 'pull_request'
timeout-minutes: 5
needs: [ install-dependencies ]
env:
PR_NAME: ${{ github.event.pull_request.title }}
PR_AUTHOR: ${{ github.actor }}
steps:
- uses: actions/checkout@v4
- name: Setup FIPL environment
uses: fipl-hse/[email protected]
- name: PR name check
run: |
bash config/stage_1_style_tests/_stage_pr_name_check.sh "$PR_NAME" "$PR_AUTHOR"
code-style:
name: Code Style
runs-on: ubuntu-latest
timeout-minutes: 5
needs: [ install-dependencies ]
env:
PR_NAME: ${{ github.event.pull_request.title }}
PR_AUTHOR: ${{ github.actor }}
steps:
- uses: actions/checkout@v4
- name: Setup FIPL environment
uses: fipl-hse/[email protected]
- name: Code Style
run: |
bash config/stage_1_style_tests/_stage_run_lint.sh "$PR_NAME" "$PR_AUTHOR"
mypy-checks:
name: Mypy checks
runs-on: ubuntu-latest
timeout-minutes: 5
needs: [ install-dependencies ]
steps:
- uses: actions/checkout@v4
- name: Setup FIPL environment
uses: fipl-hse/[email protected]
- name: MyPy check
run: |
bash config/stage_1_style_tests/_stage_run_mypy.sh
flake8-checks:
name: Import style checks
runs-on: ubuntu-latest
timeout-minutes: 5
needs: [ install-dependencies ]
steps:
- uses: actions/checkout@v4
- name: Setup FIPL environment
uses: fipl-hse/[email protected]
- name: Flake8 check
run: |
bash config/stage_1_style_tests/_stage_run_flake8.sh
requirements-check:
name: Requirements check
runs-on: ubuntu-latest
timeout-minutes: 5
needs: [ install-dependencies ]
steps:
- uses: actions/checkout@v4
- name: Setup FIPL environment
uses: fipl-hse/[email protected]
- name: Dependencies check
run: |
bash config/stage_1_style_tests/_stage_requirements_check.sh
# Stage 2. Crawler tests
checking-crawler-config:
name: Crawler checks config
needs: [
code-style,
mypy-checks,
flake8-checks
]
env:
PR_NAME: ${{ github.event.pull_request.title }}
PR_AUTHOR: ${{ github.actor }}
runs-on: ubuntu-latest
timeout-minutes: 3
steps:
- uses: actions/checkout@v4
- name: Setup FIPL environment
uses: fipl-hse/[email protected]
- name: Run crawler config checks
run: |
bash config/_stage_run_pytest.sh "$PR_NAME" "$PR_AUTHOR" -l lab_5_scrapper -m stage_2_1_crawler_config_check
checking-crawler:
name: Crawler checks
needs: [
code-style,
mypy-checks,
flake8-checks
]
env:
PR_NAME: ${{ github.event.pull_request.title }}
PR_AUTHOR: ${{ github.actor }}
runs-on: ubuntu-latest
timeout-minutes: 4
steps:
- uses: actions/checkout@v4
- name: Setup FIPL environment
uses: fipl-hse/[email protected]
- name: Run crawler config checks
run: |
bash config/_stage_run_pytest.sh "$PR_NAME" "$PR_AUTHOR" -l lab_5_scrapper -m stage_2_2_crawler_check
checking-parser:
name: Parser checks
needs: [
code-style,
mypy-checks,
flake8-checks
]
env:
PR_NAME: ${{ github.event.pull_request.title }}
PR_AUTHOR: ${{ github.actor }}
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- uses: actions/checkout@v4
- name: Setup FIPL environment
uses: fipl-hse/[email protected]
- name: Run crawler config checks
run: |
bash config/_stage_run_pytest.sh "$PR_NAME" "$PR_AUTHOR" -l lab_5_scrapper -m stage_2_3_HTML_parser_check
collecting-articles-from-internet:
name: Download articles
needs: [
checking-crawler-config,
checking-crawler,
checking-parser
]
env:
PR_NAME: ${{ github.event.pull_request.title }}
PR_AUTHOR: ${{ github.actor }}
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- uses: actions/checkout@v4
- name: Setup FIPL environment
uses: fipl-hse/[email protected]
- name: Crawl a raw dataset from web
run: |
bash admin_utils/stage_2_crawler_tests/_stage_collect_articles.sh "$PR_NAME" "$PR_AUTHOR"
bash config/_stage_run_pytest.sh "$PR_NAME" "$PR_AUTHOR" -l lab_5_scrapper -m stage_2_4_dataset_volume_check
- name: Archive raw dataset
uses: actions/upload-artifact@v4
with:
name: raw-dataset
path: |
tmp/articles
retention-days: 5
checking-articles-dataset:
name: Validate dataset
needs: [ collecting-articles-from-internet ]
env:
PR_NAME: ${{ github.event.pull_request.title }}
PR_AUTHOR: ${{ github.actor }}
runs-on: ubuntu-latest
timeout-minutes: 5
steps:
- uses: actions/checkout@v4
- name: Setup FIPL environment
uses: fipl-hse/[email protected]
- name: Download previously collected dataset
continue-on-error: true
uses: actions/download-artifact@v4
with:
name: raw-dataset
- name: Run metadata validation
run: |
source venv/bin/activate
export PYTHONPATH=$(pwd):$PYTHONPATH
python admin_utils/unpack_archived_dataset.py lab_5_scrapper
bash config/_stage_run_pytest.sh "$PR_NAME" "$PR_AUTHOR" -l lab_5_scrapper -m stage_2_5_dataset_validation
milestone-1-crawler-is-working:
name: Crawler is accepted!
needs: [
checking-articles-dataset
]
runs-on: ubuntu-latest
timeout-minutes: 2
steps:
- name: Congratulations
run: |
echo "You have completed the crawler!"
# Stage 3. Pipeline tests
milestone-2-pipeline:
name: Starting pipeline checks!
needs: [ milestone-1-crawler-is-working ]
runs-on: ubuntu-latest
timeout-minutes: 2
steps:
- name: Congratulations
run: |
echo "Preparing pipeline checks"
checking-raw-dataset-before-running-pipeline:
name: Pipe verifies dataset
needs: [
milestone-2-pipeline
]
env:
PR_AUTHOR: ${{ github.actor }}
runs-on: ubuntu-latest
timeout-minutes: 5
steps:
- uses: actions/checkout@v4
- name: Setup FIPL environment
uses: fipl-hse/[email protected]
- name: Download previously collected dataset
continue-on-error: true
uses: actions/download-artifact@v4
with:
name: raw-dataset
- name: Run crawler config checks
run: |
bash config/_stage_run_pytest.sh "$PR_NAME" "$PR_AUTHOR" -l lab_6_pipeline -m stage_3_1_dataset_sanity_checks
checking-corpus-manager-creates-instances-correctly:
name: CorpusManager detects articles
needs: [
milestone-2-pipeline
]
env:
PR_AUTHOR: ${{ github.actor }}
runs-on: ubuntu-latest
timeout-minutes: 2
steps:
- uses: actions/checkout@v4
- name: Setup FIPL environment
uses: fipl-hse/[email protected]
- name: Download previously collected dataset
continue-on-error: true
uses: actions/download-artifact@v4
with:
name: raw-dataset
- name: Run CorpusManager tests
run: |
source venv/bin/activate
export PYTHONPATH=$(pwd):$PYTHONPATH
python admin_utils/unpack_archived_dataset.py lab_6_pipeline
bash config/_stage_run_pytest.sh "$PR_NAME" "$PR_AUTHOR" -l lab_6_pipeline -m stage_3_2_corpus_manager_checks
checking-student-processing-works-for-admin-dataset:
name: Pipe processed admin data
needs: [
milestone-2-pipeline
]
env:
PR_AUTHOR: ${{ github.actor }}
runs-on: ubuntu-latest
timeout-minutes: 5
steps:
- uses: actions/checkout@v4
- name: Setup FIPL environment
uses: fipl-hse/[email protected]
- name: Download previously collected dataset
continue-on-error: true
uses: actions/download-artifact@v4
with:
name: raw-dataset
- name: Run metadata validation
run: |
source venv/bin/activate
export PYTHONPATH=$(pwd):$PYTHONPATH
python admin_utils/unpack_archived_dataset.py lab_6_pipeline
bash config/_stage_run_pytest.sh "$PR_NAME" "$PR_AUTHOR" -l lab_6_pipeline -m stage_3_4_admin_data_processing
bash config/_stage_run_pytest.sh "$PR_NAME" "$PR_AUTHOR" -l lab_6_pipeline -m stage_3_6_advanced_morphological_processing
run-student-processing:
name: Pipe processed student data
needs: [
milestone-2-pipeline
]
env:
PR_AUTHOR: ${{ github.actor }}
runs-on: ubuntu-latest
timeout-minutes: 5
steps:
- uses: actions/checkout@v4
- name: Setup FIPL environment
uses: fipl-hse/[email protected]
- name: Download previously collected dataset
continue-on-error: true
uses: actions/download-artifact@v4
with:
name: raw-dataset
- name: Run validation of `_processed.txt` files
run: |
bash admin_utils/stage_3_pipeline_tests/_stage_check_on_student_dataset.sh "$PR_AUTHOR"
- name: Archive processed dataset
continue-on-error: true
uses: actions/upload-artifact@v4
with:
name: processed-dataset
path: |
tmp/articles
retention-days: 5
checking-student-processing-works-for-student-dataset:
name: Validate final dataset
needs: [
run-student-processing
]
env:
PR_AUTHOR: ${{ github.actor }}
runs-on: ubuntu-latest
timeout-minutes: 5
steps:
- uses: actions/checkout@v4
- name: Setup FIPL environment
uses: fipl-hse/[email protected]
- name: Download previously collected dataset
continue-on-error: true
uses: actions/download-artifact@v4
with:
name: processed-dataset
- name: Run validation of `_processed.txt` files
run: |
source venv/bin/activate
export PYTHONPATH=$(pwd):$PYTHONPATH
python admin_utils/unpack_archived_dataset.py lab_6_pipeline
bash config/_stage_run_pytest.sh "$PR_NAME" "$PR_AUTHOR" -l lab_6_pipeline -m stage_3_5_student_dataset_validation
running-pos-pipeline-tests:
name: POSFrequencyPipeline tests
needs: [
checking-raw-dataset-before-running-pipeline,
checking-student-processing-works-for-admin-dataset,
checking-student-processing-works-for-student-dataset,
checking-corpus-manager-creates-instances-correctly,
]
env:
PR_AUTHOR: ${{ github.actor }}
runs-on: ubuntu-latest
timeout-minutes: 7
steps:
- uses: actions/checkout@v4
- name: Setup FIPL environment
uses: fipl-hse/[email protected]
- name: Download previously collected dataset
continue-on-error: true
uses: actions/download-artifact@v4
with:
name: processed-dataset
- name: Congratulations
run: |
bash config/_stage_run_pytest.sh "$PR_NAME" "$PR_AUTHOR" -l lab_6_pipeline -m stage_4_pos_frequency_pipeline_checks
- name: Archive processed dataset
continue-on-error: true
uses: actions/upload-artifact@v4
with:
name: processed-dataset
path: |
tmp/articles
retention-days: 5
milestone-2-pipeline-is-working:
name: Pipeline is accepted!
needs: [
running-pos-pipeline-tests
]
runs-on: ubuntu-latest
timeout-minutes: 2
steps:
- name: Congratulations
run: |
echo "You have completed the assignment!"