-
Notifications
You must be signed in to change notification settings - Fork 196
181 lines (161 loc) · 4.99 KB
/
bld_wheels_and_upload.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
name: Build and upload to PyPI
# Build on every workflow_dispatch, branch push, tag push, and pull request change
on:
workflow_dispatch:
pull_request:
push:
branches:
- master
# Sequence of patterns matched against refs/tags
tags:
- 'v*' # Push events to matching v*, i.e. v1.0, v20.15.10
jobs:
build_wheels_windows_64:
name: Build wheels on ${{ matrix.os }} 64-bit
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [windows-latest]
steps:
- uses: actions/[email protected]
- name: Build wheels
uses: pypa/[email protected]
env:
CIBW_BUILD: "*-win_amd64"
CIBW_SKIP: "cp36-* pp*"
- uses: actions/[email protected]
with:
name: ibmdb-wheels64-${{ matrix.os }}
path: wheelhouse/*.whl
build_wheels_windows_32:
name: Build wheels on ${{ matrix.os }} 32-bit
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [windows-latest]
steps:
- uses: actions/[email protected]
- name: Build wheels
uses: pypa/[email protected]
env:
CIBW_BUILD: "*-win32"
CIBW_SKIP: "cp36-* pp*"
- uses: actions/[email protected]
with:
name: ibmdb-wheels32-${{ matrix.os }}
path: wheelhouse/*.whl
build_wheels_linux:
name: Build wheels on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest]
steps:
- uses: actions/[email protected]
- name: Build wheels
uses: pypa/[email protected]
env:
CIBW_MANYLINUX_X86_64_IMAGE: manylinux2014
CIBW_SKIP: "cp36-* *-musllinux_* pp* *-*linux_{aarch64,ppc64le}"
CIBW_REPAIR_WHEEL_COMMAND_LINUX:
auditwheel repair
--exclude libdb2.so.1
--exclude libDB2xml4c.so.58
--exclude libm.so.6
--exclude libcrypt.so.1
--exclude libpam.so.0
--exclude librt.so.1
--exclude libpthread.so.0
--exclude libc.so.6
--exclude libdl.so.2
--wheel-dir {dest_dir}
{wheel}
- uses: actions/[email protected]
with:
name: ibmdb-wheels-${{ matrix.os }}
path: wheelhouse/*.whl
build_wheels_macos_arm64:
name: Build wheels on macOS ARM64
runs-on: macos-14
strategy:
matrix:
architecture: [arm64]
steps:
- uses: actions/[email protected]
- name: Build wheels
uses: pypa/[email protected]
env:
CIBW_SKIP: "cp36-* cp37-* cp38-* pp*"
MACOSX_DEPLOYMENT_TARGET: 14.0
- uses: actions/[email protected]
with:
name: ibmdb-wheelsarm64
path: wheelhouse/*.whl
build_wheels_macos_x86:
name: Build wheels for macOS x86_64
runs-on: macos-13
strategy:
matrix:
architecture: [x86_64]
steps:
- uses: actions/[email protected]
- name: Build wheels
uses: pypa/[email protected]
env:
CIBW_SKIP: "cp36-* pp*"
MACOSX_DEPLOYMENT_TARGET: 10.15
- uses: actions/[email protected]
with:
name: ibmdb-wheelsx86-${{ matrix.os }}
path: wheelhouse/*.whl
build_sdist:
name: Build source distribution
runs-on: ubuntu-latest
steps:
- uses: actions/[email protected]
- name: Install Python dependencies
run: python -m pip install --upgrade pip build
- name: Build sdist
run: python -m build --sdist --no-isolation
- name: Package version
id: version
run: |
cd dist
pip install ibm_db*
echo "VERSION=$(python -c 'import ibm_db; print(ibm_db.__version__)')" >> $GITHUB_OUTPUT
- name: Build source distribution
run: |
PACKAGE="ibm_db-$VERSION"
cd dist
tar -xzf $PACKAGE.tar.gz
rm -rf $PACKAGE/clidriver*
rm -rf $PACKAGE.tar.gz
tar -czf $PACKAGE.tar.gz $PACKAGE
rm -rf $PACKAGE
env:
VERSION: ${{ steps.version.outputs.VERSION}}
- name: Upload sdist
uses: actions/[email protected]
with:
name: ibmdb-sdist
path: dist/*.tar.gz
upload_pypi:
needs: [build_wheels_windows_64, build_wheels_windows_32, build_wheels_linux, build_wheels_macos_arm64, build_wheels_macos_x86, build_sdist]
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest]
permissions:
# IMPORTANT: this permission is mandatory for trusted publishing
id-token: write
#upload to PyPI on every tag starting with 'v'
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags/v')
steps:
- uses: actions/[email protected]
with:
path: dist
pattern: ibmdb-*
merge-multiple: true
- name: Publish distribution to PyPI
if: startsWith(github.ref, 'refs/tags')
uses: pypa/gh-action-pypi-publish@release/v1.12