-
Notifications
You must be signed in to change notification settings - Fork 7
217 lines (184 loc) Β· 6.67 KB
/
python-package.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
name: aimrocks packaging pipeline
on: workflow_dispatch
jobs:
uploading-wheels:
needs:
- linux-dist-aarch64
- linux-dist-x86_64
- macos-dist
runs-on: ubuntu-latest
name: Uploading wheels
steps:
- name: Setup python
uses: actions/setup-python@v2
with:
python-version: '3.9'
architecture: x64
- name: Install dev dependencies
run: |
python -m pip install twine
- name: Download all the wheels
uses: actions/download-artifact@v3
- name: Publish wheels
env:
PYPI_PASSWORD: ${{ secrets.pypi_password }}
run: |
python -m twine upload -u __token__ -p "${PYPI_PASSWORD}" artifact/*.whl
linux-dist-aarch64:
runs-on: m1
strategy:
fail-fast: false
matrix:
manylinux-version: [ 'manylinux_2_28_aarch64', 'manylinux2014_aarch64', 'manylinux_2_24_aarch64' ]
name: ${{ matrix.manylinux-version }} using Docker on M1 Mac
steps:
- name: Checkout sources
uses: actions/checkout@v2
- name: Pull Docker Images
run: |
docker pull quay.io/pypa/${{ matrix.manylinux-version }}
- name: Building dependencies for ${{ matrix.manylinux-version }}
run: |
docker build \
--build-arg FROM=quay.io/pypa/${{ matrix.manylinux-version }} \
--target deps .
- name: Building rocksdb for ${{ matrix.manylinux-version }}
run: |
docker build \
--build-arg FROM=quay.io/pypa/${{ matrix.manylinux-version }} \
--target rocksdb .
- name: Building wheels for ${{ matrix.manylinux-version }}
run: |
docker build \
--build-arg FROM=quay.io/pypa/${{ matrix.manylinux-version }} \
--target wheels . \
-t aimhubio/aimrocks:${{ matrix.manylinux-version }}
- name: Auditing wheels for ${{ matrix.manylinux-version }}
run: |
mkdir -p manylinux_dist/ && \
docker run --rm \
--mount type=bind,source=$PWD/manylinux_dist,target=/opt/aimrocks/manylinux_dist \
aimhubio/aimrocks:${{ matrix.manylinux-version }} \
bash -e /opt/aimrocks/docker/audit-wheels.sh
- uses: actions/upload-artifact@v3
with:
path: manylinux_dist/*.whl
linux-dist-x86_64:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
manylinux-version: [ 'manylinux1_x86_64', 'manylinux2010_x86_64', 'manylinux2014_x86_64', 'manylinux_2_24_x86_64' ]
name: ${{ matrix.manylinux-version }}
steps:
- name: Install Docker & images
run: |
apt update && apt install -y docker.io
sudo systemctl enable --now docker
- name: Checkout sources
uses: actions/checkout@v2
- name: Setup python
uses: actions/setup-python@v2
with:
python-version: '3.9'
architecture: x64
- name: Pull Docker Images
run: |
docker pull quay.io/pypa/${{ matrix.manylinux-version }}
- uses: satackey/[email protected]
# Ignore the failure of a step and avoid terminating the job.
continue-on-error: true
with:
key: aimrocks-cython-manylinux-build-${{ matrix.manylinux-version }}-{hash}
restore-keys: |
aimrocks-cython-manylinux-build-${{ matrix.manylinux-version }}-
- name: Building dependencies for ${{ matrix.manylinux-version }}
run: |
docker build \
--build-arg FROM=quay.io/pypa/${{ matrix.manylinux-version }} \
--target deps .
- name: Building rocksdb for ${{ matrix.manylinux-version }}
run: |
docker build \
--build-arg FROM=quay.io/pypa/${{ matrix.manylinux-version }} \
--target rocksdb .
- name: Building wheels for ${{ matrix.manylinux-version }}
run: |
docker build \
--build-arg FROM=quay.io/pypa/${{ matrix.manylinux-version }} \
--target wheels . \
-t aimhubio/aimrocks:${{ matrix.manylinux-version }}
- name: Auditing wheels for ${{ matrix.manylinux-version }}
run: |
mkdir -p manylinux_dist/ && \
docker run --rm \
--mount type=bind,source=$PWD/manylinux_dist,target=/opt/aimrocks/manylinux_dist \
aimhubio/aimrocks:${{ matrix.manylinux-version }} \
bash -e /opt/aimrocks/docker/audit-wheels.sh
- uses: actions/upload-artifact@v3
with:
path: manylinux_dist/*.whl
macos-deps:
runs-on: m1
strategy:
fail-fast: true
matrix:
arch: ['arm64', 'x86_64']
name: Preparing dependencies for ${{ matrix.arch }} Mac build
env:
MACOSX_DEPLOYMENT_TARGET: 10.14
AIM_DEP_DIR: /tmp/run/${{ github.run_number }}/${{ matrix.arch }}
CMAKE: /opt/homebrew/bin/cmake
steps:
- name: Preparing Build Dir for Dependencies
run: |
mkdir -p $AIM_DEP_DIR
rm -rf $AIM_DEP_DIR/*
- name: Checkout sources
uses: actions/checkout@v2
- name: Building ZLib
run: |
pwd
ls -lhatr .github/workflows/mac
arch -${{matrix.arch}} ./.github/workflows/mac/build-zlib.sh
- name: Building BZip2
run: |
arch -${{matrix.arch}} ./.github/workflows/mac/build-bzip2.sh
- name: Building LZ4
run: |
arch -${{matrix.arch}} ./.github/workflows/mac/build-lz4.sh
- name: Building Snappy
run: |
arch -${{matrix.arch}} ./.github/workflows/mac/build-snappy.sh
- name: Building ZSTD
run: |
arch -${{matrix.arch}} ./.github/workflows/mac/build-zstd.sh
- name: Building RocksDB
run: |
arch -${{matrix.arch}} ./.github/workflows/mac/build-rocksdb.sh
macos-dist:
runs-on: m1
needs: macos-deps
strategy:
fail-fast: true
matrix:
python-version: [ '3.6', '3.7', '3.8', '3.9', '3.10' , '3.11']
arch: ['arm64', 'x86_64']
exclude:
- arch: 'arm64'
python-version: 3.6
- arch: 'arm64'
python-version: 3.7
# requirement for custom runners: having cmake and python installed
name: Python ${{ matrix.python-version }} for ${{ matrix.arch }} build
env:
MACOSX_DEPLOYMENT_TARGET: 10.14
AIM_DEP_DIR: /tmp/run/${{ github.run_number }}/${{ matrix.arch }}
PYTHON: /opt/conda/${{ matrix.arch }}/envs/py${{ matrix.python-version }}/bin/python
steps:
- name: Build and test wheels
run: |
arch -${{matrix.arch}} $PYTHON -m build
- uses: actions/upload-artifact@v3
with:
path: dist/*.whl