-
Notifications
You must be signed in to change notification settings - Fork 2
/
.gitlab-ci.yml
64 lines (56 loc) · 1.23 KB
/
.gitlab-ci.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
stages:
- test
- test_post
- release
# -- Test ---------------------------------------------------------------------
test:
stage: test
image: python:$PYTHON_VERSION
before_script:
- pip install tox
script:
- make test PYTHON=$PYTHON_VERSION
artifacts:
paths:
- .coverage/data*
parallel:
matrix:
- PYTHON_VERSION:
- "3.7"
- "3.8"
- "3.9"
- "3.10"
- "3.11"
- "3.12"
# -- Test Post ----------------------------------------------------------------
coverage:
stage: test_post
image: python
before_script:
- pip install tox -U
script:
- tox -e coverage_report
dependencies:
- test
coverage: '/TOTAL\s+\d+\s+\d+\s+\d+\s+\d+\s+(\d+[.]\d+?)\%/'
artifacts:
paths:
- htmlcov/
# -- Release ------------------------------------------------------------------
upload_to_pypi:
stage: release
image: python
before_script:
- pip install setuptools wheel twine -U
script:
- make build_dist LOCALVERSION=
- make upload
when: manual
only:
- master
- /^release/.+$/
- tags
environment:
name: PyPi
url: https://pypi.org/project/async-reduce/
dependencies: [] # don't fetch artifacts