-
Notifications
You must be signed in to change notification settings - Fork 11
147 lines (130 loc) · 4.24 KB
/
wheels.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
name: Wheels
on:
workflow_dispatch:
push:
release:
types: [ published ]
jobs:
build_wheels:
name: Build wheels for ${{ matrix.build }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
include:
# macos-13 is an intel runner, macos-14 is apple silicon
# - os: macos-13
# build: cp38-macosx_x86_64
# target: 13.0
# - os: macos-13
# build: cp39-macosx_x86_64
# target: 13.0
# - os: macos-13
# build: cp310-macosx_x86_64
# target: 13.0
# - os: macos-13
# build: cp311-macosx_x86_64
# target: 13.0
- os: macos-13
build: cp312-macosx_x86_64
python: '3.12'
target: 13.0
# - os: macos-14
# build: cp39-macosx_arm64
# target: 14.0
# - os: macos-14
# build: cp310-macosx_arm64
# target: 14.0
# - os: macos-14
# build: cp311-macosx_arm64
# target: 14.0
- os: macos-14
build: cp312-macosx_arm64
python: '3.12'
target: 14.0
# - os: ubuntu-latest
# build: cp38-manylinux_x86_64
# - os: ubuntu-latest
# build: cp39-manylinux_x86_64
# - os: ubuntu-latest
# build: cp310-manylinux_x86_64
# - os: ubuntu-latest
# build: cp311-manylinux_x86_64
- os: ubuntu-latest
build: cp312-manylinux_x86_64
steps:
- name: Set macOS deployment target
if: runner.os == 'macOS'
run: echo "MACOSX_DEPLOYMENT_TARGET=${{ matrix.target }}" >> $GITHUB_ENV
# missing build tools on some macos runners
- name: Install macOS build dependencies
if: runner.os == 'macOS'
run: brew install automake libtool cmake
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
fetch-tags: true
- name: Build wheels
uses: pypa/[email protected]
env:
CIBW_BUILD: ${{ matrix.build }}
CIBW_BEFORE_ALL_LINUX: yum install -y bzip2-devel flac-devel netcdf-devel
CIBW_BEFORE_ALL_MACOS: brew install bzip2 flac netcdf
CIBW_BEFORE_BUILD: ./deps/install_boost.sh
CIBW_REPAIR_WHEEL_COMMAND_MACOS: >
DYLD_LIBRARY_PATH=$PWD/deps/lib delocate-wheel --require-archs {delocate_archs} -w {dest_dir} -v {wheel} -e Framework
CIBW_BUILD_VERBOSITY: 1
CIBW_ENVIRONMENT: >
CMAKE_BUILD_PARALLEL_LEVEL=4 CMAKE_PREFIX_PATH=$PWD/deps
CIBW_TEST_SKIP: "*-macosx_*"
CIBW_TEST_COMMAND: ctest --test-dir {package}/build --output-on-failure
- name: Upload artifacts
uses: actions/upload-artifact@v4
with:
name: cibw-wheel-${{ matrix.build }}
path: ./wheelhouse/spt3g*.whl
- name: Setup python
if: runner.os == 'macOS'
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python }}
- name: Install package
if: runner.os == 'macOS'
run: |
pip install pytest healpy
pip install ./wheelhouse/spt3g*.whl
- name: Run tests
if: runner.os == 'macOS'
run: ctest --test-dir ./build --output-on-failure
build_sdist:
name: Build source distribution
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
fetch-tags: true
- name: Build sdist
run: pipx run build --sdist
- uses: actions/upload-artifact@v4
with:
name: cibw-sdist
path: dist/*.tar.gz
upload_pypi:
needs: [build_wheels, build_sdist]
runs-on: ubuntu-latest
environment: pypi
permissions:
id-token: write
if: github.event_name == 'release' && github.event.action == 'published'
steps:
- name: Download artifacts
uses: actions/download-artifact@v4
with:
# unpacks all CIBW artifacts into dist/
pattern: cibw-*
path: dist
merge-multiple: true
- name: Publish package distributions to PyPI
uses: pypa/gh-action-pypi-publish@release/v1