-
Notifications
You must be signed in to change notification settings - Fork 2
141 lines (134 loc) · 3.66 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
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 }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-13, macos-14]
steps:
- uses: actions/checkout@v4
- name: Set up QEMU
if: runner.os == 'Linux'
uses: docker/setup-qemu-action@v3
with:
platforms: all
id: qemu
- 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: Ensure Macos 13
run: |
if [[ "${{ matrix.os }}" -eq "macos-13" ]]; then
echo "CIBW_ARCHS_MACOS=x86_64 universal2" >> $GITHUB_ENV
else
echo "CIBW_ARCHS_MACOS=arm64" >> $GITHUB_ENV
fi
shell: bash
- name: Build wheels
uses: pypa/[email protected]
env:
CIBW_ARCHS_LINUX: auto aarch64 ppc64le s390x
CIBW_ARCHS_WINDOWS: auto
- name: Upload wheels
uses: actions/upload-artifact@v4
if: github.event_name != 'pull_request'
with:
name: pkg-wheels-${{ matrix.os }}-${{ strategy.job-index }}
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 }}