-
-
Notifications
You must be signed in to change notification settings - Fork 54
189 lines (144 loc) · 5.09 KB
/
build.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
name: Build
on: [push, pull_request]
jobs:
tests:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-20.04, macos-13]
python-version: [3.6, 3.7, 3.8, 3.9, "3.10", "3.11", "3.12", "pypy-3.7"]
use-system-libs: [false]
include:
- os: ubuntu-20.04
python-version: "3.11"
use-system-libs: true
steps:
- uses: actions/checkout@v4
- name: Use Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- run: pip install tox virtualenv
- run: "make jq.c"
- run: tox -e py
if: ${{ !matrix.use-system-libs }}
- run: |
# Remove deps to make sure they're not being used
rm -r deps
sudo apt-get install -y libjq-dev libonig-dev
JQPY_USE_SYSTEM_LIBS=1 tox -e py
if: ${{ matrix.use-system-libs }}
build_sdist:
name: Build source distribution
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
name: Use Python 3.11
with:
python-version: '3.11'
- run: make jq.c
- run: pip install build twine
- name: Build sdist
run: python -m build --sdist
- name: Check metadata
run: python -m twine check dist/*
- uses: actions/upload-artifact@v3
with:
path: dist/*.tar.gz
build_wheels_matrix:
name: Generate matrix for building wheels
runs-on: ubuntu-latest
outputs:
matrix: ${{ steps.set-matrix.outputs.matrix }}
steps:
- uses: actions/checkout@v4
- name: Use Python 3.11
uses: actions/setup-python@v5
with:
python-version: '3.11'
- name: Install cibuildwheel
run: python -m pip install cibuildwheel==2.17.0
- id: set-matrix
env:
CIBW_ARCHS_LINUX: "auto aarch64"
CIBW_ARCHS_MACOS: "auto"
run: |
MATRIX=$(
{
cibuildwheel --print-build-identifiers --platform linux \
| sed 's/.*/{"cibw-only": "&", "os": "ubuntu-20.04"}/' \
&& cibuildwheel --print-build-identifiers --platform macos \
| sed 's/.*/{"cibw-only": "&", "os": "macos-13" }/' \
&& CIBW_ARCHS_WINDOWS=AMD64 cibuildwheel --print-build-identifiers --platform windows \
| sed 's/.*/{"cibw-only": "&", "os": "windows-2022", "arch": "AMD64" }/' \
&& CIBW_ARCHS_WINDOWS=x86 cibuildwheel --print-build-identifiers --platform windows \
| sed 's/.*/{"cibw-only": "&", "os": "windows-2022", "arch": "x86" }/'
} | jq --slurp --compact-output '{"include": .}'
)
echo matrix="$MATRIX" >> $GITHUB_OUTPUT
build_wheels:
name: Build ${{ matrix.cibw-only }} wheel
needs: build_wheels_matrix
strategy:
matrix: ${{ fromJson(needs.build_wheels_matrix.outputs.matrix) }}
runs-on: ${{ matrix.os }}
steps:
- name: Check whether to build wheel
id: should-build-wheel
if: |
(github.event_name == 'push' && startsWith(github.event.ref, 'refs/tags/')) ||
matrix.cibw-only == 'cp310-manylinux_x86_64' ||
matrix.cibw-only == 'cp310-win_amd64' ||
matrix.cibw-only == 'cp310-win32'
shell: bash
run: echo true=1 >> $GITHUB_OUTPUT
- uses: actions/checkout@v4
if: steps.should-build-wheel.outputs.true
- name: Set up MSYS2
if: steps.should-build-wheel.outputs.true && runner.os == 'Windows'
uses: ./.github/actions/setup-msys2
with:
arch: ${{ matrix.arch }}
- name: Set up QEMU
if: steps.should-build-wheel.outputs.true && runner.os == 'Linux'
uses: docker/setup-qemu-action@v2
with:
platforms: all
- name: Build wheels
if: steps.should-build-wheel.outputs.true
uses: pypa/[email protected]
with:
only: ${{ matrix.cibw-only }}
env:
CIBW_ENVIRONMENT: ${{ runner.os == 'Windows' && matrix.arch == 'x86' && 'CC=i686-w64-mingw32-gcc.exe' || '' }}
- uses: actions/upload-artifact@v3
if: steps.should-build-wheel.outputs.true
with:
path: ./wheelhouse/*.whl
build_wheels_macosx_arm64:
name: Build macOS arm64 wheels
runs-on: macos-14
steps:
- uses: actions/checkout@v4
- name: Use Python 3.11
uses: actions/setup-python@v5
with:
python-version: '3.11'
- name: Print build identifiers
run: |
python -m pip install cibuildwheel==2.17.0
CIBW_SKIP=cp38-macosx_arm64 python -m cibuildwheel --print-build-identifiers
- name: Build wheels
if: ${{ (github.event_name == 'push' && startsWith(github.event.ref, 'refs/tags/')) }}
uses: pypa/[email protected]
env:
CIBW_SKIP: cp38-macosx_arm64
- name: Build wheels
if: ${{ !(github.event_name == 'push' && startsWith(github.event.ref, 'refs/tags/')) }}
uses: pypa/[email protected]
with:
only: cp310-macosx_arm64
- uses: actions/upload-artifact@v4
with:
path: ./wheelhouse/*.whl