This repository has been archived by the owner on Oct 9, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 212
192 lines (169 loc) · 6.75 KB
/
ci-testing.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
name: CI testing
# see: https://help.github.com/en/actions/reference/events-that-trigger-workflows
on: # Trigger the workflow on push or pull request, but only for the master branch
push:
branches: ["master", "release/*"]
pull_request: {}
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}-${{ github.head_ref }}
cancel-in-progress: ${{ ! (github.ref == 'refs/heads/master' || startsWith(github.ref, 'refs/heads/release/')) }}
defaults:
run:
shell: bash
jobs:
pytester:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
# max-parallel: 6
matrix:
# PyTorch 1.5 is failing on Win and bolts requires torchvision>=0.5
os: [ubuntu-20.04, macOS-12, windows-2022]
python-version: [3.8, 3.9]
topic: ['core']
extra: [[]]
include:
- { os: 'ubuntu-20.04', python-version: 3.9, topic: 'core', extra: [] }
- { os: 'ubuntu-20.04', python-version: 3.9, topic: 'image', extra: ['image_extra'] }
- { os: 'ubuntu-20.04', python-version: 3.9, topic: 'image', extra: ['image_baal'] }
- { os: 'ubuntu-20.04', python-version: 3.9, topic: 'image', extra: ['image_segm'] }
- { os: 'ubuntu-20.04', python-version: 3.9, topic: 'image', extra: ['image_vissl'] }
- { os: 'ubuntu-20.04', python-version: 3.9, topic: 'video', extra: [] }
- { os: 'ubuntu-20.04', python-version: 3.9, topic: 'tabular', extra: [] }
- { os: 'ubuntu-20.04', python-version: 3.9, topic: 'text', extra: [] }
- { os: 'ubuntu-20.04', python-version: 3.8, topic: 'pointcloud', extra: [] }
- { os: 'ubuntu-20.04', python-version: 3.9, topic: 'serve', extra: [] }
- { os: 'ubuntu-20.04', python-version: 3.9, topic: 'graph', extra: [] }
- { os: 'ubuntu-20.04', python-version: 3.9, topic: 'audio', extra: [] }
- { os: 'ubuntu-20.04', python-version: 3.8, topic: 'core', extra: [], requires: 'oldest' }
- { os: 'ubuntu-20.04', python-version: 3.8, topic: 'image', extra: [], requires: 'oldest' }
- { os: 'ubuntu-20.04', python-version: 3.8, topic: 'vision', extra: [], requires: 'oldest' }
- { os: 'ubuntu-20.04', python-version: 3.9, topic: 'tabular', extra: [], requires: 'oldest' }
- { os: 'ubuntu-20.04', python-version: 3.9, topic: 'text', extra: [], requires: 'oldest' }
#- { os: 'ubuntu-20.04', python-version: 3.8, topic: 'serve', extra: [], requires: 'oldest' } # todo
# Timeout: https://stackoverflow.com/a/59076067/4521646
timeout-minutes: 70
env:
FREEZE_REQUIREMENTS: 1
TORCH_URL: https://download.pytorch.org/whl/cpu/torch_stable.html
TRANSFORMERS_CACHE: _hf_cache
DATASETS_VERBOSITY: warning
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Set Swap Space
if: runner.os == 'Linux'
uses: pierotofy/set-swap-space@master
with:
swap-size-gb: 10
# Github Actions: Run step on specific OS: https://stackoverflow.com/a/57948488/4521646
- name: Setup macOS
if: runner.os == 'macOS'
run: brew install libomp openblas lapack
- name: Setup Ubuntu
if: runner.os == 'Linux'
run: sudo apt-get install -y libsndfile1 graphviz
- name: Set min. dependencies
if: matrix.requires == 'oldest'
run: |
import glob, os
files = glob.glob(os.path.join("requirements", "*.txt"))
for fname in files:
lines = [line.replace('>=', '==') for line in open(fname).readlines()]
open(fname, 'w').writelines(lines)
shell: python
- name: Adjust extras
run: |
import os
extras = ['${{ matrix.topic }}'] + ${{ toJSON(matrix.extra) }}
with open(os.getenv('GITHUB_ENV'), "a") as gh_env:
gh_env.write(f"EXTRAS={','.join(extras)}")
shell: python
- name: Get pip cache dir
id: pip-cache
run: echo "dir=$(pip cache dir)" >> $GITHUB_OUTPUT
- name: Restore pip cache
uses: actions/cache/restore@v3
id: restore-cache
with:
path: ${{ steps.pip-cache.outputs.dir }}
key: pip-dependencies
- name: Install package
run: |
# todo: some dependency has not correct format of their extras
python -m pip install "pip==22.3.1"
# todo: this is a hack to be able to install packages that are checking torch version while install
pip install numpy Cython "torch>=1.11.0" -f $TORCH_URL
pip install .[$EXTRAS,test] --upgrade \
--prefer-binary \
-f $TORCH_URL \
-f https://data.pyg.org/whl/torch-1.13.1+cpu.html # this extra URL is for graph extras
pip list
- name: Restore HF cache
uses: actions/cache/restore@v3
with:
path: ${{ env.TRANSFORMERS_CACHE }}
key: cache-transformers
- name: DocTests
working-directory: src/
run: |
mv flash flashy
pytest . --doctest-modules --doctest-plus
mv flashy flash
- name: Install dependencies
run: |
pip install .[$EXTRAS,test] \
-r requirements/testing_${{ matrix.topic }}.txt \
--upgrade --prefer-binary -f $TORCH_URL
pip cache info
pip list
- name: Save pip cache
if: github.ref == 'refs/heads/master'
uses: actions/cache/save@v3
with:
path: ${{ steps.pip-cache.outputs.dir }}
key: pip-dependencies
- name: Testing
run: |
coverage run --source flash -m pytest \
tests/core \
tests/deprecated_api \
tests/examples \
tests/template \
tests/${{ matrix.topic }} \
-v --timeout=300 --durations=50 # --reruns 3 --reruns-delay 2
- name: Save HF cache
if: github.ref == 'refs/heads/master'
uses: actions/cache/save@v3
with:
path: ${{ env.TRANSFORMERS_CACHE }}
key: cache-transformers
- name: Statistics
run: |
coverage report
coverage xml
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v3
with:
token: ${{ secrets.CODECOV_TOKEN }}
file: ./coverage.xml
flags: unittests,${{ matrix.topic }},${{ matrix.extra }}
env_vars: OS,PYTHON
name: codecov-umbrella
fail_ci_if_error: false
testing-guardian:
runs-on: ubuntu-latest
needs: pytester
if: always()
steps:
- run: echo "${{ needs.pytester.result }}"
- name: failing...
if: needs.pytester.result == 'failure'
run: exit 1
- name: cancelled or skipped...
if: contains(fromJSON('["cancelled", "skipped"]'), needs.pytester.result)
timeout-minutes: 1
run: sleep 90