forked from duckdb/duckdb
-
Notifications
You must be signed in to change notification settings - Fork 0
226 lines (190 loc) · 7.29 KB
/
Python.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
name: Python
on: [push, pull_request]
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}-${{ github.head_ref || '' }}-${{ github.base_ref || '' }}
cancel-in-progress: true
defaults:
run:
shell: bash
env:
GH_TOKEN: ${{ secrets.GH_TOKEN }}
TWINE_PASSWORD: ${{ secrets.TWINE_PASSWORD }}
AWS_ACCESS_KEY_ID: AKIAVBLKPL2ZW2T7TYFQ
AWS_SECRET_ACCESS_KEY: ${{ secrets.NODE_PRE_GYP_SECRETACCESSKEY }}
NODE_AUTH_TOKEN: ${{secrets.NODE_AUTH_TOKEN}}
jobs:
# This is just a sanity check of Python 3.9 running with Arrow
linux-python3-9:
name: Python 3.9 Linux
runs-on: ubuntu-20.04
env:
CIBW_BUILD: 'cp39-manylinux_x86_64'
CIBW_BEFORE_BUILD: 'pip install --prefer-binary "pandas>=0.24" "pytest>=4.3"'
CIBW_TEST_REQUIRES: 'pytest'
CIBW_BEFORE_TEST: 'pip install --prefer-binary "pandas>=0.24" pytest-timeout mypy && pip install --prefer-binary "requests>=2.26" && (pip install --prefer-binary "pyarrow==6.0" || true)'
CIBW_TEST_COMMAND: 'python -m pytest {project}/tests'
SETUPTOOLS_SCM_NO_LOCAL: 'yes'
TWINE_USERNAME: 'hfmuehleisen'
PYTEST_TIMEOUT: '600'
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0
- uses: actions/setup-python@v2
with:
python-version: '3.7'
- name: Install
run: pip install cibuildwheel twine
- name: Build
run: |
cd tools/pythonpkg
python setup.py sdist
mkdir duckdb_tarball && tar xvf dist/duckdb-*.tar.gz --strip-components=1 -C duckdb_tarball
cibuildwheel --output-dir wheelhouse duckdb_tarball
linux-python3:
name: Python 3 Linux
runs-on: ubuntu-20.04
strategy:
matrix:
arch: [auto, aarch64]
python_build: [cp37-*, cp38-*,cp39-*,cp310-*]
needs: linux-python3-9
env:
CIBW_BUILD: ${{ matrix.python_build}}
CIBW_BEFORE_BUILD: 'pip install --prefer-binary "pandas>=0.24" "pytest>=4.3"'
CIBW_TEST_REQUIRES: 'pytest'
CIBW_BEFORE_TEST: 'pip install --prefer-binary "pandas>=0.24" pytest-timeout mypy && pip install --prefer-binary "requests>=2.26"'
CIBW_TEST_COMMAND: 'python -m pytest {project}/tests/fast'
SETUPTOOLS_SCM_NO_LOCAL: 'yes'
TWINE_USERNAME: 'hfmuehleisen'
PYTEST_TIMEOUT: '600'
DUCKDB_BUILD_UNITY: 1
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0
- uses: actions/setup-python@v2
with:
python-version: '3.7'
- uses: docker/setup-qemu-action@v1
if: ${{ matrix.arch == 'aarch64' }}
name: Set up QEMU
- name: Install
run: pip install cibuildwheel twine
- name: Build
run: |
cd tools/pythonpkg
python setup.py sdist
mkdir duckdb_tarball && tar xvf dist/duckdb-*.tar.gz --strip-components=1 -C duckdb_tarball
cibuildwheel --output-dir wheelhouse duckdb_tarball
- name: Deploy aarch64
if: ${{ matrix.arch == 'aarch64' }}
run: |
if [[ "$GITHUB_REF" =~ ^(refs/heads/master|refs/tags/v.+)$ && "$GITHUB_REPOSITORY" = "duckdb/duckdb" ]] ; then
twine upload --non-interactive --disable-progress-bar --skip-existing tools/pythonpkg/wheelhouse/*.whl
fi
- name: Deploy regular
if: ${{ matrix.arch != 'aarch64' }}
run: |
python scripts/asset-upload-gha.py duckdb_python_src.tar.gz=tools/pythonpkg/dist/duckdb-*.tar.gz
if [[ "$GITHUB_REF" =~ ^(refs/heads/master|refs/tags/v.+)$ && "$GITHUB_REPOSITORY" = "duckdb/duckdb" ]] ; then
twine upload --non-interactive --disable-progress-bar --skip-existing tools/pythonpkg/wheelhouse/*.whl tools/pythonpkg/dist/duckdb-*.tar.gz
fi
osx-python3:
name: Python 3 OSX
runs-on: macos-latest
strategy:
matrix:
python_build: [cp36-*, cp37-*, cp38-*, cp39-*, cp310-*]
needs: linux-python3-9
env:
CIBW_BUILD: ${{ matrix.python_build}}
CIBW_BEFORE_BUILD: 'pip install --prefer-binary "pandas>=0.24" "pytest>=4.3"'
CIBW_TEST_REQUIRES: 'pytest'
CIBW_BEFORE_TEST: 'pip install --prefer-binary "pandas>=0.24" "requests>=2.26" mypy && (pip install --prefer-binary "pyarrow==6.0" || true)'
CIBW_TEST_COMMAND: 'python -m pytest {project}/tests/fast'
CIBW_ARCHS_MACOS: 'x86_64 universal2 arm64'
SETUPTOOLS_SCM_NO_LOCAL: 'yes'
TWINE_USERNAME: 'hfmuehleisen'
DUCKDB_BUILD_UNITY: 1
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0
- uses: actions/setup-python@v2
with:
python-version: '3.7'
- name: Install
run: pip install cibuildwheel twine
- name: Build
run: |
cd tools/pythonpkg
python setup.py sdist
mkdir duckdb_tarball && tar xvf dist/duckdb-*.tar.gz --strip-components=1 -C duckdb_tarball
cibuildwheel --output-dir wheelhouse duckdb_tarball
- name: Deploy
run: |
if [[ "$GITHUB_REF" =~ ^(refs/heads/master|refs/tags/v.+)$ && "$GITHUB_REPOSITORY" = "duckdb/duckdb" ]] ; then
twine upload --non-interactive --disable-progress-bar --skip-existing tools/pythonpkg/wheelhouse/*.whl
fi
win-python3:
name: Python 3 Windows
runs-on: windows-latest
strategy:
matrix:
python_build: [cp36-*, cp37-*, cp38-*, cp39-*, cp310-*]
needs: linux-python3-9
env:
CIBW_BUILD: ${{ matrix.python_build}}
CIBW_BEFORE_BUILD: 'pip install --prefer-binary "pandas>=0.24" "pytest>=4.3"'
CIBW_TEST_REQUIRES: 'pytest'
CIBW_BEFORE_TEST: 'pip install --prefer-binary "pandas>=0.24" "pytest>=4.3" mypy'
CIBW_TEST_COMMAND: 'python -m pytest {project}/tests/fast'
SETUPTOOLS_SCM_NO_LOCAL: 'yes'
TWINE_USERNAME: 'hfmuehleisen'
DUCKDB_BUILD_UNITY: 1
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0
- uses: actions/setup-python@v2
with:
python-version: '3.7'
- name: Install
run: pip install cibuildwheel twine
- name: Build
run: |
cd tools/pythonpkg
python setup.py sdist
mkdir duckdb_tarball && tar xvf dist/duckdb-*.tar.gz --strip-components=1 -C duckdb_tarball
cibuildwheel --output-dir wheelhouse duckdb_tarball
- name: Deploy
run: |
if [[ "$GITHUB_REF" =~ ^(refs/heads/master|refs/tags/v.+)$ && "$GITHUB_REPOSITORY" = "duckdb/duckdb" ]] ; then
twine upload --non-interactive --disable-progress-bar --skip-existing tools/pythonpkg/wheelhouse/*.whl
fi
linux-tarball:
name: Python 3 Tarball
runs-on: ubuntu-20.04
needs: linux-python3-9
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0
- uses: actions/setup-python@v2
with:
python-version: '3.7'
- name: Install
run: pip install numpy pytest pandas mypy
- name: Build
run: |
python --version
git archive --format zip --output test-tarball.zip HEAD
mkdir duckdb-test-tarball
mv test-tarball.zip duckdb-test-tarball
cd duckdb-test-tarball
unzip test-tarball.zip
cd tools/pythonpkg
export SETUPTOOLS_SCM_PRETEND_VERSION=0.2.2
python setup.py install --user
(cd tests/ && python -m pytest)