generated from CuriBio/python-github-template
-
Notifications
You must be signed in to change notification settings - Fork 0
304 lines (268 loc) · 11.9 KB
/
dev-test.yaml
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
# Based on https://github.com/prettier/prettier/blob/master/.github/workflows/dev-test.yml
name: Dev
on:
workflow_dispatch:
inputs:
randomlyseed:
description: "Pytest Randomly Seed"
required: false
default: ""
api_endpoint:
description: "Cloud API endpoint"
required: true
default: "test"
type: choice
options:
- test
- prod
schedule:
- cron: "0 5 * * *"
push:
branches:
- main
- development
pull_request:
jobs:
test:
strategy:
fail-fast: false
matrix:
os:
- "ubuntu-22.04"
- "windows-2022"
python-version:
- "3.10"
node-version:
- 16
include:
# only enable coverage on the fastest job
- os: "ubuntu-22.04"
python-version: "3.10"
node-version: "16"
IS_FASTEST_JOB: true
- os: "windows-2022"
python-version: "3.10"
node-version: "16"
IS_DEPLOYMENT_CONFIG: true
name: Python ${{ matrix.python-version }} with Node ${{ matrix.node-version }} on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
steps:
- name: Adjust Screen Resolution (Windows)
if: runner.os == 'Windows'
run: |
Get-DisplayResolution
Set-DisplayResolution -Width 1920 -Height 1080 -Force
Get-DisplayResolution
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 1
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: Display Language Dependency Versions
run: |
python --version
pip --version
node --version
npm --version
# - name: Cache node modules # https://docs.github.com/en/free-pro-team@latest/actions/guides/caching-dependencies-to-speed-up-workflows
# uses: actions/cache@v3
# env:
# cache-name: cache-node-modules
# with:
# path: ./.npm_cache
# key: ${{ matrix.os }}-${{ matrix.node-version }}-build-${{ env.cache-name }}-${{ hashFiles('**/package-lock.json') }}
# restore-keys: |
# ${{ matrix.os }}-${{ matrix.node-version }}-build-${{ env.cache-name }}-
# - name: Cache Python modules
# uses: actions/cache@v3
# env:
# cache-name: cache-python-modules
# with:
# path: ./.pipenv_cache
# key: ${{ matrix.os }}-${{ matrix.python-version }}-build-${{ env.cache-name }}-${{ hashFiles('**/Pipfile.lock') }}
# restore-keys: |
# ${{ matrix.os }}-${{ matrix.python-version }}-build-${{ env.cache-name }}-
# - name: Cache Pre-commit hooks
# uses: actions/cache@v3
# env:
# cache-name: cache-pre-commit-hooks
# if: matrix.IS_FASTEST_JOB == true
# with:
# path: ~/.precommit_cache # Eli (10/22/20): Having the pre-commit cache inside the repo creates problems with Pytest detecting test files inside the cache
# key: ${{ matrix.os }}-${{ matrix.python-version }}-${{ matrix.node-version }}-build-${{ env.cache-name }}-${{ hashFiles('**/.pre-commit-config.yaml') }}
# restore-keys: |
# ${{ matrix.os }}-${{ matrix.python-version }}-${{ matrix.node-version }}-build-${{ env.cache-name }}-
- name: Display Chrome version (Windows)
if: runner.os == 'Windows'
run: (Get-Item (Get-ItemProperty 'HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\App Paths\chrome.exe').'(Default)').VersionInfo
- name: Display Chrome version (Linux)
if: runner.os == 'Linux'
run: |
google-chrome --version
chromedriver --version
- name: Get Version
id: software-version
uses: notiz-dev/github-action-json-property@v0.2.0
with:
path: "electron/package.json"
prop_path: "version"
- name: Get Product Name
id: product-name
uses: notiz-dev/github-action-json-property@v0.2.0
with:
path: "electron/package.json"
prop_path: "name"
- name: Display Extracted Software Version and Product Name
run: |
echo ${{steps.software-version.outputs.prop}}
echo ${{steps.product-name.outputs.prop}}
- name: Install pipenv # no known reason for this specific version of pipenv, just pinning it for good practice
run: pip install pipenv==2020.11.15
- name: Setup Pipenv
env:
PIPENV_VENV_IN_PROJECT: 1
# Eli (10/28/20): in the windows environments, just saying `pipenv --three` defaults to the highest installed version of Python on the image...not the actual one specified in the matrix. So need to specify
run: |
cd controller/
pipenv --python ${{ matrix.python-version }}
pipenv run pip freeze
- name: Install Python Dependencies
env:
PIPENV_CACHE_DIR: ./.pipenv_cache
# Eli (10/28/20): The --sequential flag was found to be necessary on windows due to issues where scipy wouldn't recognize that it had been installed. Also, when this was part of a set of multiple run commands using the pipe, when it errored it didn't cause the whole step to fail, so separating it out into its own step
run: |
cd controller/
pipenv install --dev --deploy --sequential
- name: Download zlib Library
run: |
cd controller/
pipenv run python ../.github/workflows/run_zlib_download.py
- name: Install Local Package in editable mode for testing
run: |
cd controller/
pipenv run pip install -e .
- name: Log full installed Python packages
run: |
cd controller/
pipenv run pip freeze
- name: Setup UI
run: |
cd ui/
npm ci
- name: Setup Electron
run: |
cd electron/
npm ci
- name: Run pre-commit hooks
# only enable pre-commit on the fastest job.
if: matrix.IS_FASTEST_JOB == true
env:
PRE_COMMIT_HOME: ~/.precommit_cache
run: |
cd controller/
pipenv run pre-commit install
pipenv run pre-commit run -a
- name: Move OpalKelly .so file to needed location (Linux)
if: runner.os == 'Linux' # Eli (10/20/20): not sure if copying to both locations is needed...but it's working and haven't checked which is required...should theoretically only be one needed
run: |
cd controller/
sudo cp $(pipenv --venv)/lib/python${{ matrix.python-version }}/site-packages/xem_wrapper/_linux/libokFrontPanel.so /usr/local/lib
sudo cp $(pipenv --venv)/lib/python${{ matrix.python-version }}/site-packages/xem_wrapper/_linux/libokFrontPanel.so /usr/lib
- name: Download the firmware files from AWS S3
env:
AWS_ACCESS_KEY_ID: ${{ secrets.CI_IAM_USER_ACCESS_KEY }}
AWS_SECRET_ACCESS_KEY: ${{ secrets.CI_IAM_USER_SECRET_KEY }}
run: |
cd controller/
pipenv run python ../.github/workflows/run_s3_download.py
- name: Run Python Tests with randomly generated seed
if: github.event.inputs.randomlyseed == ''
timeout-minutes: 40
run: |
cd controller/
pipenv run pytest -xsvv --cov-report=xml --include-slow-tests --full-ci
- name: Run Python Tests with supplied pytest-randomly seed
if: github.event.inputs.randomlyseed != ''
timeout-minutes: 30
run: |
cd controller/
pipenv run pytest -xsvv --cov-report=xml --include-slow-tests --full-ci --randomly-seed=${{ github.event.inputs.randomlyseed }}
- name: Confirm no extra files generated by this test suite
if: matrix.IS_FASTEST_JOB == true
env:
PRE_COMMIT_HOME: ./.precommit_cache
# only enable pre-commit on the fastest job
run: |
cd controller/
pipenv run pre-commit run git-dirty -a
- name: Insert the Build Number and Software Version into the code (Windows)
if: runner.os == 'Windows'
env:
build_number: ${{ github.run_number }}
run: |
echo $env:build_number
((Get-Content -path controller\src\mantarray_desktop_app\constants.py -Raw) -replace 'REPLACETHISWITHTIMESTAMPDURINGBUILD',"$(Get-Date -Format 'yyMMddHHmmss')--$env:build_number") | Set-Content -Path controller\src\mantarray_desktop_app\constants.py
((Get-Content -path controller\src\mantarray_desktop_app\constants.py -Raw) -replace 'REPLACETHISWITHVERSIONDURINGBUILD',"${{steps.software-version.outputs.prop}}") | Set-Content -Path controller\src\mantarray_desktop_app\constants.py
((Get-Content -path controller\src\mantarray_desktop_app\constants.py -Raw) -replace 'REPLACETHISWITHENDPOINTDURINGBUILD',"${{github.event.inputs.api_endpoint}}") | Set-Content -Path controller\src\mantarray_desktop_app\constants.py
((Get-Content -path electron\main\index.js -Raw) -replace 'REPLACETHISWITHENDPOINTDURINGBUILD',"${{env.API_ENDPOINT}}") | Set-Content -Path electron\main\index.js
- name: Insert the Build Number and Software Version into the code (Linux)
if: runner.os == 'Linux'
env:
build_number: ${{ github.run_number }}
run: |
echo $build_number
sed -i 's/REPLACETHISWITHTIMESTAMPDURINGBUILD/'"$(date +'%y%m%d%H%M%S')"'--$build_number/g' controller/src/mantarray_desktop_app/constants.py
sed -i 's/REPLACETHISWITHVERSIONDURINGBUILD/'"${{steps.software-version.outputs.prop}}"'/g' controller/src/mantarray_desktop_app/constants.py
sed -i 's/REPLACETHISWITHENDPOINTDURINGBUILD/'"${{github.event.inputs.api_endpoint}}"'/g' controller/src/mantarray_desktop_app/constants.py
sed -i 's/REPLACETHISWITHENDPOINTDURINGBUILD/'"${{github.event.inputs.api_endpoint}}"'/g' electron/main/index.js
- name: Compile the Python Executable
run: |
cd controller/
pipenv run pyinstaller pyinstaller.spec --log-level=DEBUG --distpath=dist-python --workpath=build-python
- name: Run Python Tests on Executable with randomly generated seed
if: github.event.inputs.randomlyseed == ''
run: |
cd controller/
pipenv run pytest tests/test_exe.py -xsvv --only-exe --no-cov
- name: Run Python Tests on Executable with supplied pytest-randomly seed
if: github.event.inputs.randomlyseed != ''
run: |
cd controller/
pipenv run pytest tests/test_exe.py -xsvv --only-exe --no-cov --randomly-seed=${{ github.event.inputs.randomlyseed }}
- name: Upload coverage to Codecov
# only upload coverage from fastest job
if: matrix.IS_FASTEST_JOB == true
uses: codecov/codecov-action@v3
timeout-minutes: 1 # Tanner (8/11/20): once fundmental issue with codecov timeout is fixed, remove this line and the next
continue-on-error: true
with:
file: ./coverage.xml
flags: unittests
env_vars: OS,PYTHON
name: codecov-umbrella
fail_ci_if_error: true
- name: Build Full Electron App
run: |
cd ui/
npm run build
cd ../electron
npm run build
# - name: Archive Installer File
# if: runner.os == 'Windows'
# uses: actions/upload-artifact@v3
# with:
# name: installer--${{ matrix.os }}--${{ matrix.node-version }}--${{ matrix.python-version }}
# path: "dist/Mantarray*.exe"
# - name: Archive Dist Folder
# if: runner.os == 'Windows'
# uses: actions/upload-artifact@v3
# with:
# name: dist--${{ matrix.os }}--${{ matrix.node-version }}--${{ matrix.python-version }}
# path: "dist/**/*"