-
Notifications
You must be signed in to change notification settings - Fork 5
160 lines (146 loc) · 4.44 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
name: CI
on:
workflow_dispatch:
pull_request:
push:
branches:
- main
tags:
- "*.*.*"
jobs:
build_wheels:
name: Build ${{ matrix.build }}${{ matrix.arch }} wheels on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
include:
- os: ubuntu-20.04
arch: "x86_64"
build: ""
artifact_suffix: "linux_x86_64"
use_qemu: false
- os: ubuntu-20.04
arch: "i686"
build: ""
artifact_suffix: "linux_i686"
use_qemu: false
- os: ubuntu-20.04
arch: "aarch64"
build: "manylinux_"
artifact_suffix: "manylinux_aarch64"
use_qemu: true
- os: ubuntu-20.04
arch: "aarch64"
build: "musllinux_"
artifact_suffix: "musllinux_aarch64"
use_qemu: true
- os: ubuntu-20.04
arch: "ppc64le"
build: "manylinux_"
artifact_suffix: "manylinux_ppc64le"
use_qemu: true
- os: ubuntu-20.04
arch: "ppc64le"
build: "musllinux_"
artifact_suffix: "musllinux_ppc64le"
use_qemu: true
- os: ubuntu-20.04
arch: "s390x"
build: "manylinux_"
artifact_suffix: "manylinux_s390x"
use_qemu: true
- os: ubuntu-20.04
arch: "s390x"
build: "musllinux_"
artifact_suffix: "musllinux_s390x"
use_qemu: true
- os: windows-2019
arch: "AMD64"
msystem: "mingw64"
mingw_env: "x86_64"
build: ""
artifact_suffix: "windows_x86_64"
use_qemu: false
- os: windows-2019
arch: "x86"
msystem: "mingw32"
mingw_env: "i686"
build: ""
artifact_suffix: "windows_x86"
use_qemu: false
- os: macos-14
arch: "arm64 universal2 x86_64"
build: ""
artifact_suffix: "macos"
use_qemu: false
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0 # ensure history is present for automatic versioning
- name: Set up QEMU
uses: docker/[email protected]
if: runner.os == 'Linux' && matrix.use_qemu
- name: Set up MSYS
uses: msys2/setup-msys2@v2
with:
msystem: ${{ matrix.msystem }}
install: >-
mingw-w64-${{matrix.mingw_env}}-toolchain
if: runner.os == 'Windows'
- name: Install ninja (macOS)
run: which ninja || brew install ninja
if: runner.os == 'macOS'
- name: Install pipx (macOS)
run: which pipx || brew install pipx
if: runner.os == 'macOS'
- name: Build wheels
uses: pypa/[email protected]
env:
CIBW_ARCHS: "${{ matrix.arch }}"
CIBW_ARCHS_MACOS: "x86_64 universal2 arm64"
CIBW_BUILD: "cp39-${{ matrix.build }}*"
- uses: actions/upload-artifact@v4
with:
name: artifact-${{matrix.artifact_suffix}}
path: ./wheelhouse/*.whl
build_sdist:
name: Build source distributions
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0 # ensure history is present for automatic versioning
- name: Build SDist
run: pipx run build --sdist
- uses: actions/upload-artifact@v4
with:
name: artifact-sdist
path: dist/*.tar.gz
check_dist:
name: Check dist
needs: [build_wheels, build_sdist]
runs-on: ubuntu-20.04
steps:
- uses: actions/download-artifact@v4
with:
path: dist
merge-multiple: true
- run: pipx run twine check --strict dist/*
pypi-publish:
name: Upload release to PyPI
runs-on: ubuntu-latest
needs: [build_wheels, build_sdist, check_dist]
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags')
environment:
name: pypi
url: https://pypi.org/p/swig
permissions:
id-token: write # IMPORTANT: this permission is mandatory for trusted publishing
steps:
- name: Download Python package dist artifacts
uses: actions/download-artifact@v4
with:
path: dist
merge-multiple: true
- name: Publish package distributions to PyPI
uses: pypa/gh-action-pypi-publish@release/v1