-
Notifications
You must be signed in to change notification settings - Fork 4
372 lines (337 loc) · 13.5 KB
/
tests.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
# This workflow will install Python dependencies, run tests and lint with a variety of Python versions
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions
name: Tests
on:
push:
pull_request:
branches: [ master ]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python 3.8
uses: actions/setup-python@v4.0.0
with:
python-version: 3.8
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install flake8
- name: Lint with flake8
run: |
# stop the build if there are Python syntax errors or undefined names
flake8 ./shitspotter --count --select=E9,F63,F7,F82 --show-source --statistics
# # exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide
# flake8 . --count --exit-zero --max-complexity=20 --max-line-length=127 --statistics
build_and_test_sdist:
name: Test sdist Python 3.8
runs-on: ubuntu-latest
#needs: [lint]
steps:
- uses: actions/checkout@v3
- name: Set up Python 3.8
uses: actions/setup-python@v4.0.0
with:
python-version: 3.8
- name: Upgrade pip
run: |
python -m pip install --upgrade pip
python -m pip install -r requirements/tests.txt
python -m pip install -r requirements/runtime.txt
- name: Build sdist
run: |
python setup.py sdist
- name: Install sdist
run: |
ls -al ./dist
pip install dist/shitspotter*.tar.gz -v
mv shitspotter ignore_src_shitspotter
- name: Test minimal sdist
run: |
pwd
ls -al
# Run the tests
# Get path to installed package
MOD_DPATH=$(python -c "import shitspotter, os; print(os.path.dirname(shitspotter.__file__))")
echo "MOD_DPATH = $MOD_DPATH"
python -m pytest -p pytester -p no:doctest --xdoctest --cov=shitspotter $MOD_DPATH ./tests
- name: Test full sdist
run: |
pwd
ls -al
python -m pip install -r requirements/optional.txt
# Run the tests
# Get path to installed package
MOD_DPATH=$(python -c "import shitspotter, os; print(os.path.dirname(shitspotter.__file__))")
echo "MOD_DPATH = $MOD_DPATH"
python -m pytest -p pytester -p no:doctest --xdoctest $MOD_DPATH ./tests
- name: Upload sdist artifact
uses: actions/upload-artifact@v3
with:
name: wheels
path: ./dist/*.tar.gz
build_and_test_wheels:
# TODO: handle different python versions: https://github.com/actions/setup-python
name: ${{ matrix.python-version }} on ${{ matrix.os }}, arch=${{ matrix.arch }}
runs-on: ${{ matrix.os }}
#needs: [lint]
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macOS-latest]
python-version:
- '3.5'
- '3.6'
- '3.7'
- '3.8'
arch: [auto]
#cibw_build: [cp3*-*]
#cibw_skip: ["*-win32"]
# Add additional workers to reduce overall build time
#include:
# - os: windows-latest
# cibw_build: cp3*-win32
# arch: auto
# cibw_skip: ""
# - os: ubuntu-latest
# arch: aarch64
# cibw_build: cp35-*
# - os: ubuntu-latest
# arch: aarch64
# cibw_build: cp36-*
# - os: ubuntu-latest
# arch: aarch64
# cibw_build: cp37-*
# - os: ubuntu-latest
# arch: aarch64
# cibw_build: cp38-*
# - os: ubuntu-latest
# arch: aarch64
# cibw_build: cp39-*
steps:
- name: Checkout source
uses: actions/checkout@v3
# Configure compilers for Windows 64bit.
- name: Enable MSVC 64bit
if: matrix.os == 'windows-latest' && matrix.cibw_build != 'cp3*-win32'
uses: ilammy/msvc-dev-cmd@v1
# Configure compilers for Windows 32bit.
- name: Enable MSVC 32bit
if: matrix.os == 'windows-latest' && matrix.cibw_build == 'cp3*-win32'
uses: ilammy/msvc-dev-cmd@v1
with:
arch: x86
# Emulate aarch64 ppc64le s390x under linux
- name: Set up QEMU
if: runner.os == 'Linux' && matrix.arch != 'auto'
uses: docker/setup-qemu-action@v2
with:
platforms: all
# See: https://github.com/pypa/cibuildwheel/blob/main/action.yml
#- name: Build wheels
# uses: pypa/cibuildwheel@v1.11.0
# with:
# output-dir: wheelhouse
# # to supply options, put them in 'env', like:
# env:
# CIBW_SKIP: ${{ matrix.cibw_skip }}
# CIBW_BUILD: ${{ matrix.cibw_build }}
# CIBW_TEST_REQUIRES: -r requirements/tests.txt
# CIBW_TEST_COMMAND: python {project}/run_tests.py
# # configure cibuildwheel to build native archs ('auto'), or emulated ones
# CIBW_ARCHS_LINUX: ${{ matrix.arch }}
# Setup Python environemtn for a pure wheel
- uses: actions/setup-python@v4.0.0
with:
python-version: ${{ matrix.python-version }}
- name: Build pure wheel
shell: bash
run: |
python -m pip install setuptools>=0.8 wheel
python -m pip wheel --wheel-dir wheelhouse .
- name: Test pure wheel
shell: bash
env:
CI_PYTHON_VERSION: py${{ matrix.python-version }}
#OS_NAME: ${{ matrix.os }}
run: |
# Remove source directory (ensure it doesn't conflict)
mv shitspotter ignore_src_shitspotter
rm pytest.ini
# Install the wheel
python -m pip install wheelhouse/shitspotter*.whl
python -m pip install -r requirements/tests.txt
# Run in a sandboxed directory
WORKSPACE_DNAME="testdir_${CI_PYTHON_VERSION}_${GITHUB_RUN_ID}_${RUNNER_OS}"
mkdir -p $WORKSPACE_DNAME
cd $WORKSPACE_DNAME
# Run the tests
# Get path to installed package
MOD_DPATH=$(python -c "import shitspotter, os; print(os.path.dirname(shitspotter.__file__))")
echo "MOD_DPATH = $MOD_DPATH"
python -m pytest -p pytester -p no:doctest --xdoctest --cov-config ../.coveragerc --cov-report term --cov=shitspotter $MOD_DPATH ../tests
mv .coverage "../.coverage.$WORKSPACE_DNAME"
cd ..
# Move coverage file to a new name
- name: Show built files
shell: bash
run: ls -la wheelhouse
- name: Set up Python 3.8 to combine coverage Linux
if: runner.os == 'Linux'
uses: actions/setup-python@v4.0.0
with:
python-version: 3.8
- name: Combine coverage Linux
if: runner.os == 'Linux'
run: |
echo '############ PWD'
pwd
ls -al
python -m pip install coverage[toml]
echo '############ combine'
coverage combine .
echo '############ XML'
coverage xml -o ./tests/coverage.xml
echo '############ FIND'
find . -name .coverage.*
find . -name coverage.xml
- name: Codecov Upload
uses: codecov/codecov-action@v3
with:
file: ./tests/coverage.xml
- name: Upload wheels artifact
uses: actions/upload-artifact@v3
with:
name: wheels
path: ./wheelhouse/shitspotter*.whl
deploy:
# Publish on the real PyPI
name: Uploading to PyPi
runs-on: ubuntu-latest
if: github.event_name == 'push' && startsWith(github.event.ref, 'refs/tags')
needs: [build_and_test_wheels, build_and_test_sdist]
steps:
- name: Checkout source
uses: actions/checkout@v3
- name: Download wheels and sdist
uses: actions/download-artifact@v3
with:
name: wheels
path: dist
- name: Show files to upload
shell: bash
run: ls -la dist
# Note:
# See ../../dev/setup_secrets.sh for details on how secrets are deployed securely
- name: Sign and Publish
env:
TWINE_REPOSITORY_URL: https://upload.pypi.org/legacy/
TWINE_USERNAME: ${{ secrets.TWINE_USERNAME }}
TWINE_PASSWORD: ${{ secrets.TWINE_PASSWORD }}
EROTEMIC_CI_SECRET: ${{ secrets.EROTEMIC_CI_SECRET }}
run: |
ls -al
GPG_EXECUTABLE=gpg
$GPG_EXECUTABLE --version
openssl version
$GPG_EXECUTABLE --list-keys
echo "Decrypting Keys"
GLKWS=$EROTEMIC_CI_SECRET openssl enc -aes-256-cbc -pbkdf2 -md SHA512 -pass env:GLKWS -d -a -in dev/ci_public_gpg_key.pgp.enc | $GPG_EXECUTABLE --import
GLKWS=$EROTEMIC_CI_SECRET openssl enc -aes-256-cbc -pbkdf2 -md SHA512 -pass env:GLKWS -d -a -in dev/gpg_owner_trust.enc | $GPG_EXECUTABLE --import-ownertrust
GLKWS=$EROTEMIC_CI_SECRET openssl enc -aes-256-cbc -pbkdf2 -md SHA512 -pass env:GLKWS -d -a -in dev/ci_secret_gpg_subkeys.pgp.enc | $GPG_EXECUTABLE --import
echo "Finish Decrypt Keys"
$GPG_EXECUTABLE --list-keys || true
$GPG_EXECUTABLE --list-keys || echo "first invocation of gpg creates directories and returns 1"
$GPG_EXECUTABLE --list-keys
MB_PYTHON_TAG=$(python -c "import setup; print(setup.MB_PYTHON_TAG)")
VERSION=$(python -c "import setup; print(setup.VERSION)")
pip install twine
pip install six pyopenssl ndg-httpsclient pyasn1 -U --user
pip install requests[security] twine --user
GPG_KEYID=$(cat dev/public_gpg_key)
echo "GPG_KEYID = '$GPG_KEYID'"
MB_PYTHON_TAG=$MB_PYTHON_TAG \
DO_GPG=True GPG_KEYID=$GPG_KEYID \
TWINE_REPOSITORY_URL=${TWINE_REPOSITORY_URL} \
TWINE_PASSWORD=$TWINE_PASSWORD \
TWINE_USERNAME=$TWINE_USERNAME \
GPG_EXECUTABLE=$GPG_EXECUTABLE \
DO_UPLOAD=True \
DO_TAG=False ./publish.sh
test_deploy:
# Publish on the test PyPI
name: Uploading to Test PyPi
runs-on: ubuntu-latest
#if: github.event_name == 'push' && (startsWith(github.event.ref, 'refs/heads/main') || startsWith(github.event.ref, 'refs/heads/master'))
if: github.event_name == 'push' && !startsWith(github.event.ref, 'refs/tags')
needs: [build_and_test_wheels, build_and_test_sdist]
steps:
- name: Checkout source
uses: actions/checkout@v3
- name: Download wheels and sdist
uses: actions/download-artifact@v3
with:
name: wheels
path: dist
- name: Show files to upload
shell: bash
run: ls -la dist
- name: Sign and Publish
env:
TEST_TWINE_REPOSITORY_URL: https://test.pypi.org/legacy/
#TEST_TWINE_USERNAME: ${{ secrets.TEST_TWINE_USERNAME }}
#TEST_TWINE_PASSWORD: ${{ secrets.TEST_TWINE_PASSWORD }}
#export TEST_TWINE_USERNAME=${{ secrets.EROTEMIC_TEST_TWINE_USERNAME }}
#export TEST_TWINE_PASSWORD=${{ secrets.EROTEMIC_TEST_TWINE_PASSWORD }}
#PYUTILS_CI_SECRET: ${{ secrets.PYUTILS_CI_SECRET }}
TEST_TWINE_USERNAME: ${{ secrets.TEST_TWINE_USERNAME }}
TEST_TWINE_PASSWORD: ${{ secrets.TEST_TWINE_PASSWORD }}
EROTEMIC_CI_SECRET: ${{ secrets.EROTEMIC_CI_SECRET }}
run: |
ls -al
GPG_EXECUTABLE=gpg
$GPG_EXECUTABLE --version
openssl version
$GPG_EXECUTABLE --list-keys
echo "Decrypting Keys"
GLKWS=$EROTEMIC_CI_SECRET openssl enc -aes-256-cbc -pbkdf2 -md SHA512 -pass env:GLKWS -d -a -in dev/ci_public_gpg_key.pgp.enc | $GPG_EXECUTABLE --import
GLKWS=$EROTEMIC_CI_SECRET openssl enc -aes-256-cbc -pbkdf2 -md SHA512 -pass env:GLKWS -d -a -in dev/gpg_owner_trust.enc | $GPG_EXECUTABLE --import-ownertrust
GLKWS=$EROTEMIC_CI_SECRET openssl enc -aes-256-cbc -pbkdf2 -md SHA512 -pass env:GLKWS -d -a -in dev/ci_secret_gpg_subkeys.pgp.enc | $GPG_EXECUTABLE --import
echo "Finish Decrypt Keys"
$GPG_EXECUTABLE --list-keys || echo "first invocation of gpg creates directories and returns 1"
$GPG_EXECUTABLE --list-keys
MB_PYTHON_TAG=$(python -c "import setup; print(setup.MB_PYTHON_TAG)")
VERSION=$(python -c "import setup; print(setup.VERSION)")
pip install twine
pip install six pyopenssl ndg-httpsclient pyasn1 -U --user
pip install requests[security] twine --user
GPG_KEYID=$(cat dev/public_gpg_key)
echo "GPG_KEYID = '$GPG_KEYID'"
MB_PYTHON_TAG=$MB_PYTHON_TAG \
DO_GPG=True GPG_KEYID=$GPG_KEYID \
TWINE_REPOSITORY_URL=${TEST_TWINE_REPOSITORY_URL} \
TWINE_USERNAME=${TEST_TWINE_USERNAME} \
TWINE_PASSWORD=${TEST_TWINE_PASSWORD} \
GPG_EXECUTABLE=$GPG_EXECUTABLE \
DO_UPLOAD=True \
DO_TAG=False ./publish.sh
###
# Unfortunately we cant (yet) use the yaml docstring trick here
# https://gh.neting.ccmunity/t/allow-unused-keys-in-workflow-yaml-files/172120
#__doc__: |
# # How to run locally
# # https://packaging.python.org/guides/using-testpypi/
# cd $HOME/code
# git clone https://github.com/nektos/act.git $HOME/code/act
# cd $HOME/code/act
# chmod +x install.sh
# ./install.sh -b $HOME/.local/opt/act
# cd $HOME/code/shitspotter
# load_secrets
# unset GITHUB_TOKEN
# $HOME/.local/opt/act/act \
# --secret=EROTEMIC_TWINE_PASSWORD=$EROTEMIC_TWINE_PASSWORD \
# --secret=EROTEMIC_TWINE_USERNAME=$EROTEMIC_TWINE_USERNAME \
# --secret=EROTEMIC_CI_SECRET=$EROTEMIC_CI_SECRET \
# --secret=EROTEMIC_TEST_TWINE_USERNAME=$EROTEMIC_TEST_TWINE_USERNAME \
# --secret=EROTEMIC_TEST_TWINE_PASSWORD=$EROTEMIC_TEST_TWINE_PASSWORD