-
Notifications
You must be signed in to change notification settings - Fork 2
157 lines (150 loc) · 4.11 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
name: Build
on:
pull_request:
types:
- opened
paths:
- 'src/tarina/_op.h'
- 'src/tarina/*_c.c'
- 'src/tarina/*_c.pyx'
release:
types: [published]
workflow_dispatch:
concurrency:
group: ${{ github.ref }}-${{ github.workflow }}
cancel-in-progress: true
permissions:
contents: read
jobs:
build_sdist:
name: Build sdist
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python 3.11
uses: actions/setup-python@v5
with:
python-version: 3.11
- name: Install dependencies
uses: py-actions/py-dependency-install@v4
with:
path: requirements/cython.txt
- name: Cythonize
run: |
make cythonize
- name: Build sdist
run: |
pipx run build --sdist
- uses: actions/upload-artifact@v4
with:
name: pkg-sdist
path: dist/*.tar.gz
build_pure_wheel:
name: Build pure wheel
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python 3.11
uses: actions/setup-python@v5
with:
python-version: 3.11
- name: Install dependencies
uses: py-actions/py-dependency-install@v4
with:
path: requirements/cython.txt
- name: Cythonize
run: |
make cythonize
- name: Build wheel
run: |
export TARINA_NO_EXTENSIONS=1
pipx run build --wheel
- uses: actions/upload-artifact@v4
with:
name: pkg-pure-wheel
path: dist/*.whl
build_wheels:
name: Build wheels on ${{ matrix.os }} ${{ matrix.qemu }}
runs-on: ${{ matrix.os }}-latest
strategy:
matrix:
os: [ubuntu, windows, macos]
qemu: ['']
include:
- os: ubuntu
qemu: aarch64
- os: ubuntu
qemu: ppc64le
- os: ubuntu
qemu: s390x
env:
MY_ARTIFACT_NAME: ${{ matrix.os }}
steps:
- run: |
if [[ -n "${{ matrix.qemu }}" ]]; then
echo "MY_ARTIFACT_NAME=${{ matrix.os }}-${{ matrix.qemu }}" >> $GITHUB_ENV
fi
shell: bash
- uses: actions/checkout@v4
- name: Set up QEMU
if: ${{ matrix.qemu }}
uses: docker/setup-qemu-action@v2
with:
platforms: all
id: qemu
- name: Prepare emulation
run: |
if [[ -n "${{ matrix.qemu }}" ]]; then
# Build emulated architectures only if QEMU is set,
# use default "auto" otherwise
echo "CIBW_ARCHS_LINUX=${{ matrix.qemu }}" >> $GITHUB_ENV
fi
shell: bash
- name: Set up Python
uses: actions/setup-python@v5
- name: Install cython
uses: py-actions/py-dependency-install@v4
with:
path: requirements/cython.txt
- name: Cythonize
run: |
make cythonize
- name: Build wheels
uses: pypa/[email protected]
env:
CIBW_ARCHS_MACOS: x86_64 arm64 universal2
CIBW_ARCHS_LINUX: auto
CIBW_ARCHS_WINDOWS: auto x86
- name: Upload wheels
uses: actions/upload-artifact@v4
if: github.event_name != 'pull_request'
with:
name: pkg-wheels-${{ env.MY_ARTIFACT_NAME }}
path: ./wheelhouse/*.whl
release:
name: Release
runs-on: ubuntu-latest
if: github.event_name == 'release'
needs: [build_sdist, build_pure_wheel, build_wheels]
permissions:
contents: write
packages: write
steps:
- uses: actions/checkout@v4
- name: Download artifact
uses: actions/download-artifact@v4
with:
path: dist
pattern: pkg-*
merge-multiple: true
- name: Publish package
uses: pypa/[email protected]
with:
verbose: true
user: __token__
password: ${{ secrets.PYPI_API_TOKEN }}
- name: upload release asset
run: |
gh release upload ${{ github.event.release.tag_name }} dist/*
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}