forked from aio-libs-abandoned/aioredis-py
-
Notifications
You must be signed in to change notification settings - Fork 0
183 lines (174 loc) · 5.22 KB
/
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
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
name: CI
on:
push:
branches:
- 1.x
tags: [ 'v*' ]
pull_request:
branches:
- 1.x
- 'update/pre-commit-autoupdate'
jobs:
lint:
name: Linter
runs-on: ubuntu-latest
timeout-minutes: 5
steps:
- name: Checkout
uses: actions/checkout@v2.3.4
- name: Setup Python 3.8
uses: actions/setup-python@v2
with:
python-version: 3.8
- name: Install dependencies
uses: py-actions/py-dependency-install@v2.1.0
with:
path: tests/requirements.txt
- name: Run mypy
run: |
pip install -r tests/requirements-mypy.txt
make mypy
- name: Run linter
run: |
make flake
- name: Prepare twine checker
run: |
pip install -U twine wheel
python setup.py sdist bdist_wheel
- name: Run twine checker
run: |
twine check dist/*
test:
name: Test
needs: lint
strategy:
matrix:
os: [ubuntu-latest]
pyver: ["3.6", "3.7", "3.8", "3.9", "3.10.0"]
# uvloop: [uvloop, no-uvloop]
uvloop: [no-uvloop]
redis: ["4.0.14", "5.0.14"]
exclude:
- { pyver: pypy3, uvloop: uvloop, os: ubuntu-latest, redis: 5.0.14 }
- { pyver: pypy3, uvloop: uvloop, os: ubuntu-latest, redis: 6.2.4 }
- { pyver: 3.6, uvloop: uvloop, os: ubuntu-latest, redis: 5.0.14 }
- { pyver: 3.6, uvloop: uvloop, os: ubuntu-latest, redis: 6.2.4 }
fail-fast: false
services:
redis:
image: bitnami/redis:${{ matrix.redis }}
ports:
- 6379:6379
env:
ALLOW_EMPTY_PASSWORD: 'yes'
REDIS_AOF_ENABLED: 'no'
options: >-
--health-cmd "redis-cli ping"
--health-interval 10s
--health-timeout 5s
--health-retries 5
redis-b:
image: bitnami/redis:${{ matrix.redis }}
ports:
- 6380:6380
env:
ALLOW_EMPTY_PASSWORD: 'yes'
REDIS_PORT: 6380 # For bitnami/redis:4.0
REDIS_PORT_NUMBER: 6380
REDIS_AOF_ENABLED: 'no'
options: >-
--health-cmd "redis-cli -p 6380 ping"
--health-interval 10s
--health-timeout 5s
--health-retries 5
redis-sentinel-master:
image: bitnami/redis:${{ matrix.redis }}
ports:
- 6381:6381
env:
ALLOW_EMPTY_PASSWORD: 'yes'
REDIS_PORT: 6381 # For bitnami/redis:4.0
REDIS_PORT_NUMBER: 6381
REDIS_AOF_ENABLED: 'no'
options: >-
--health-cmd "redis-cli -p 6381 ping"
--health-interval 10s
--health-timeout 5s
--health-retries 5
redis-sentinel:
image: bitnami/redis-sentinel:${{ matrix.redis }}
ports:
- 26379:26379
env:
REDIS_MASTER_HOST: 'redis-sentinel-master'
REDIS_MASTER_PORT_NUMBER: 6381
REDIS_MASTER_SET: 'master-no-fail'
REDIS_SENTINEL_QUORUM: 1
runs-on: ${{ matrix.os }}
timeout-minutes: 15
env:
OS: ${{ matrix.os }}
INSTALL_DIR: ${{ github.workspace }}/redis
PYTEST_ADDOPTS: --${{ matrix.uvloop }} --redis-url=redis://localhost:6379/0 --redis-b-url=redis://localhost:6380/0 --redis-docker-url=redis://redis:6379/0 --redis-b-docker-url=redis://redis-b:6380/0 --redis-sentinel-master-url=redis://localhost:6381/0 --redis-sentinel-url=redis://localhost:26379
steps:
- name: Checkout
uses: actions/checkout@v2.3.4
- name: Setup Python ${{ matrix.pyver }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.pyver }}
- name: Get pip cache dir
id: pip-cache
run: |
echo "::set-output name=dir::$(pip cache dir)"
- name: Cache PyPI
uses: actions/cache@v2.1.6
with:
key: pip-ci-${{ runner.os }}-${{ matrix.pyver }}-${{ hashFiles('**/requirements.txt') }}
path: ${{ steps.pip-cache.outputs.dir }}
restore-keys: |
pip-ci-${{ runner.os }}-${{ matrix.pyver }}
- name: Install dependencies
uses: py-actions/py-dependency-install@v2.1.0
with:
path: tests/requirements.txt
- name: Install uvloop
if: ${{ matrix.uvloop == 'uvloop' }}
run: pip install uvloop
- name: Install Self
run: |
pip install -e . -c tests/requirements.txt
- name: Run unittests (${{ matrix.uvloop }}, ${{ matrix.os }})
run: |
make ci-test
python -m coverage xml
- name: Upload coverage
uses: codecov/codecov-action@v2.1.0
with:
token: ${{ secrets.CODECOV_TOKEN }}
file: ./coverage.xml
publish:
name: Publish
runs-on: ubuntu-latest
needs: test
# Run only on pushing a tag
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags/v')
steps:
- name: Checkout
uses: actions/checkout@v2.4.0
- name: Setup Python 3.8
uses: actions/setup-python@v2
with:
python-version: "3.8"
- name: Install dependencies
run:
python -m pip install -U pip wheel twine
- name: Make dists
run:
python setup.py sdist bdist_wheel
- name: PyPI upload
env:
TWINE_USERNAME: __token__
TWINE_PASSWORD: ${{ secrets.PYPI_TOKEN }}
run: |
twine upload dist/*