-
Notifications
You must be signed in to change notification settings - Fork 244
290 lines (264 loc) · 8.73 KB
/
Copy pathci.yml
File metadata and controls
290 lines (264 loc) · 8.73 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
name: CI
on:
push:
branches:
- main
- feat-rewrite-v2
pull_request:
types: [opened, synchronize, reopened]
jobs:
lint-ruff:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2.5.0
- name: Set up Python 3.7
uses: actions/setup-python@v4
with:
python-version: 3.7
- name: Lint with ruff
run: |
python -m pip install --upgrade pip
python -m pip install poetry
poetry install
# stop the build if there are Python syntax errors or undefined names
poetry run ruff docarray
# exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide
poetry run ruff docarray
check-black:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2.5.0
- name: Set up Python 3.7
uses: actions/setup-python@v4
with:
python-version: 3.7
- name: check black
run: |
python -m pip install --upgrade pip
python -m pip install poetry
poetry install --only dev
poetry run black --check .
env:
CHANGED_FILES: ${{ steps.file_changes.outputs.added_modified }}
import-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2.5.0
- name: Set up Python 3.7
uses: actions/setup-python@v4
with:
python-version: 3.7
- name: Prepare environment
run: |
python -m pip install --upgrade pip
python -m pip install poetry
poetry install --without dev
poetry run pip install tensorflow==2.11.0
- name: Test basic import
run: poetry run python -c 'from docarray import DocArray, BaseDoc'
check-mypy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2.5.0
- name: Set up Python 3.7
uses: actions/setup-python@v4
with:
python-version: 3.7
- name: check mypy
run: |
python -m pip install --upgrade pip
python -m pip install poetry
poetry install --all-extras
poetry run mypy docarray
# prep-testbed:
# runs-on: ubuntu-latest
# needs: [lint-ruff, check-black, import-test]
# steps:
# - uses: actions/checkout@v2.5.0
# - id: set-matrix
# run: |
# sudo apt-get install jq
# export value=$(bash scripts/get-all-test-paths.sh)
# echo "matrix=$value" >> $GITHUB_OUTPUT
# outputs:
# matrix: ${{ steps.set-matrix.outputs.matrix }}
docarray-test:
needs: [lint-ruff, check-black, import-test]
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: [3.7]
# test-path: ${{fromJson(needs.prep-testbed.outputs.matrix)}}
test-path: [tests/integrations, tests/units, tests/documentation]
steps:
- uses: actions/checkout@v2.5.0
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Prepare environment
run: |
python -m pip install --upgrade pip
python -m pip install poetry
poetry install --all-extras
sudo apt-get install --no-install-recommends ffmpeg
- name: Test
id: test
run: |
poetry run pytest -m "not (tensorflow or benchmark or index)" ${{ matrix.test-path }}
timeout-minutes: 30
env:
JINA_AUTH_TOKEN: "${{ secrets.JINA_AUTH_TOKEN }}"
# - name: Check codecov file
# id: check_files
# uses: andstor/file-existence-action@v1
# with:
# files: "coverage.xml"
# - name: Upload coverage from test to Codecov
# uses: codecov/codecov-action@v3.1.1
# if: steps.check_files.outputs.files_exists == 'true' && ${{ matrix.python-version }} == '3.7'
# with:
# file: coverage.xml
# flags: ${{ steps.test.outputs.codecov_flag }}
# fail_ci_if_error: false
# token: ${{ secrets.CODECOV_TOKEN }} # not required for public repos
docarray-test-uncaped: # do test without using poetry lock. This does not block ci passing
needs: [lint-ruff, check-black, import-test]
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: [3.7]
test-path: [tests/integrations, tests/units, tests/documentation]
steps:
- uses: actions/checkout@v2.5.0
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Prepare environment
run: |
python -m pip install --upgrade pip
python -m pip install poetry
rm poetry.lock
poetry install --all-extras
sudo apt-get install --no-install-recommends ffmpeg
- name: Test
id: test
run: |
poetry run pytest -m "not (tensorflow or benchmark)" ${{ matrix.test-path }}
timeout-minutes: 30
env:
JINA_AUTH_TOKEN: "${{ secrets.JINA_AUTH_TOKEN }}"
docarray-test-proto3:
needs: [lint-ruff, check-black, import-test]
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: [3.7]
steps:
- uses: actions/checkout@v2.5.0
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Prepare environment
run: |
python -m pip install --upgrade pip
python -m pip install poetry
poetry install --all-extras
poetry run pip install protobuf==3.19.0 # we check that we support 3.19
sudo apt-get install --no-install-recommends ffmpeg
- name: Test
id: test
run: |
poetry run pytest -m 'proto' tests
timeout-minutes: 30
docarray-doc-index:
needs: [lint-ruff, check-black, import-test]
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: [3.7]
steps:
- uses: actions/checkout@v2.5.0
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Prepare environment
run: |
python -m pip install --upgrade pip
python -m pip install poetry
poetry install --all-extras
sudo apt-get install --no-install-recommends ffmpeg
- name: Test
id: test
run: |
poetry run pytest -m 'index and (not tensorflow)' tests
timeout-minutes: 30
docarray-test-tensorflow:
needs: [lint-ruff, check-black, import-test]
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: [3.7]
steps:
- uses: actions/checkout@v2.5.0
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Prepare environment
run: |
python -m pip install --upgrade pip
python -m pip install poetry
poetry install --all-extras
poetry run pip install protobuf==3.19.0
poetry run pip install tensorflow==2.11.0
sudo apt-get install --no-install-recommends ffmpeg
- name: Test
id: test
run: |
poetry run pytest -m 'tensorflow' tests
timeout-minutes: 30
docarray-test-benchmarks:
needs: [lint-ruff, check-black, import-test]
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: [3.7]
steps:
- uses: actions/checkout@v2.5.0
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Prepare environment
run: |
python -m pip install --upgrade pip
python -m pip install poetry
poetry install --all-extras
- name: Test
id: test
run: |
poetry run pytest -m 'benchmark' tests
timeout-minutes: 30
# just for blocking the merge until all parallel core-test are successful
success-all-test:
needs: [docarray-test, docarray-test-proto3, docarray-doc-index, docarray-test-tensorflow, docarray-test-benchmarks, import-test, check-black, check-mypy, lint-ruff]
if: always()
runs-on: ubuntu-latest
steps:
- uses: technote-space/workflow-conclusion-action@v2
- name: Check Failure
if: env.WORKFLOW_CONCLUSION == 'failure'
run: exit 1
- name: Success
if: ${{ success() }}
run: echo "All Done"