-
Notifications
You must be signed in to change notification settings - Fork 0
142 lines (115 loc) · 3.29 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
name: Wheels
on:
workflow_dispatch:
pull_request:
release:
types:
- published
jobs:
build_sdist:
name: Build SDist
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
submodules: true
- name: Build SDist
run: pipx run build --sdist
- name: Check metadata
run: pipx run twine check dist/*
- uses: actions/upload-artifact@v4
with:
name: dist-sdist
path: dist/*.tar.gz
build_wheels:
name: Wheels on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest]
steps:
- uses: actions/checkout@v4
with:
submodules: true
- run: git submodule update --init --recursive
# Used to host cibuildwheel
- uses: actions/setup-python@v5
- name: Install cibuildwheel
run: python -m pip install cibuildwheel
- name: Build CUDA Linux Wheels
run: python -m cibuildwheel --output-dir wheelhouse/cuda
if: runner.os == 'Linux'
env:
CIBW_BUILD_VERBOSITY: 1
CIBW_ARCHS_LINUX: "x86_64"
CIBW_SKIP: "*musl*"
CIBW_BEFORE_ALL: >
yum-config-manager --add-repo https://developer.download.nvidia.com/compute/cuda/repos/rhel7/x86_64/cuda-rhel7.repo &&
yum clean all &&
yum -y install cuda-toolkit &&
ls -al /usr/local &&
export PATH=$PATH:/usr/local/cuda/bin &&
nvcc --version &&
export BUILD_WITH_CUDA=1
# - uses: actions/setup-python@v5
# with:
# python-version: "3.x"
# - name: Build release distributions
# run: |
# python -m pip install build
# python -m build
# - name: Upload distributions
# uses: actions/upload-artifact@v4
# with:
# name: release-dists
# path: dist/
pypi-publish:
runs-on: ubuntu-latest
needs:
- build_wheels
permissions:
id-token: write
environment:
name: pypi
url: https://pypi.org/project/vessel_voxelizer
steps:
- name: Retrieve release distributions
uses: actions/download-artifact@v4
with:
name: release-dists
path: dist/
- name: Publish release distributions to PyPI
uses: pypa/gh-action-pypi-publish@release/v1
# - name: Verify clean directory
# run: git diff --exit-code
# shell: bash
# - name: Upload wheels
# uses: actions/upload-artifact@v4
# with:
# path: wheelhouse/*.whl
# name: dist-${{ matrix.os }}
# merge_wheels:
# name: Merge wheels into a combined artifact
# runs-on: ubuntu-latest
# needs: [build_wheels, build_sdist]
# steps:
# - name: Merge Artifacts
# uses: actions/upload-artifact/merge@v4
# with:
# name: dist
# pattern: dist-*
# upload_all:
# name: Upload if release
# needs: merge_wheels
# runs-on: ubuntu-latest
# if: github.event_name == 'release' && github.event.action == 'published'
# steps:
# - uses: actions/setup-python@v5
# - uses: actions/download-artifact@v4
# with:
# path: dist
# - uses: pypa/gh-action-pypi-publish@release/v1
# with:
# user: __token__
# password: ${{ secrets.pypi_password }}