This repository has been archived by the owner on May 2, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
178 lines (154 loc) · 5.35 KB
/
build_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
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
name: build wheels
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
detect-changes:
uses: ./.github/workflows/check_diff.yml
with:
pattern: ^crates/hyperdrivepy/
# TODO combine this with cibuildwheels
build-linux:
needs: detect-changes
# Run in PRs if changes are detected
# Run on main if version has changed
# if: >
# needs.detect-changes.outputs.changed == 'true' ||
# (github.event_name == 'push' && github.ref == 'refs/heads/main' && needs.detect-changes.outputs.version_changed == 'true')
name: build on linux
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
token: ${{github.token}}
- name: setup rust
uses: actions-rs/toolchain@v1
with:
toolchain: stable
- name: setup foundry
uses: foundry-rs/foundry-toolchain@v1
with:
version: nightly
- name: set up python
uses: actions/setup-python@v4
with:
python-version: "3.10"
cache: "pip"
token: ${{github.token}}
- name: set up pip
run: python -m pip install --upgrade pip
- name: check out hyperdrive
uses: actions/checkout@master
with:
repository: delvtech/hyperdrive
ref: "v0.9.0"
path: "./hyperdrive"
ssh-key: ${{ secrets.HYPERDRIVE_ACCESS_KEY }}
- name: build hyperdrivepy
shell: bash
run: source scripts/build_python.sh
- name: upload artifacts
uses: actions/upload-artifact@v4
with:
name: cibw-wheels-linux
path: ./wheelhouse/*.whl
build-cibuildwheels:
needs: detect-changes
# Run in PRs if changes are detected
# Run on main if version has changed
# if: >
# needs.detect-changes.outputs.changed == 'true' ||
# (github.event_name == 'push' && github.ref == 'refs/heads/main' && needs.detect-changes.outputs.version_changed == 'true')
name: Build on ${{ matrix.buildplat[0] }}-${{ matrix.buildplat[1] }}
runs-on: ${{ matrix.buildplat[0] }}
strategy:
fail-fast: false
matrix:
buildplat:
- [macos-12, macosx_x86_64]
- [macos-12, macosx_arm64]
#- [macos-12, macosx_universal2]
- [windows-2019, win_amd64]
python-version: [cp310]
steps:
- uses: actions/checkout@v3
with:
submodules: recursive
token: ${{ secrets.GITHUB_TOKEN }}
- name: check out hyperdrive
uses: actions/checkout@master
with:
repository: delvtech/hyperdrive
ref: "v0.9.0"
path: "./hyperdrive"
ssh-key: ${{ secrets.HYPERDRIVE_ACCESS_KEY }}
- name: setup rust
uses: actions-rs/toolchain@v1
with:
toolchain: stable
# NOTE: This is needed to ensure that hyperdrive-wrappers builds correctly.
- name: install foundry
uses: foundry-rs/[email protected]
with:
version: nightly
- name: set up python
uses: actions/setup-python@v4
with:
python-version: "3.10"
- name: install python dependencies
run: python -m pip install --upgrade pip && python -m pip install --upgrade -r requirements-dev.txt
- name: build wheels
uses: pypa/[email protected]
env:
CIBW_BUILD: "${{ matrix.python-version }}-*"
CIBW_ENVIRONMENT: 'PATH="$HOME/.cargo/bin:$HOME/.foundry/bin:$HOME/.cargo/env:$PATH" CARGO_TERM_COLOR="always"'
CIBW_ENVIRONMENT_WINDOWS: 'PATH="$UserProfile\.cargo\bin;$UserProfile\.foundry\bin;$UserProfile\.cargo\env;$PATH"'
CIBW_ARCHS_MACOS: x86_64 arm64
CIBW_BEFORE_ALL_MACOS: >
curl https://sh.rustup.rs -sSf | sh -s -- --default-toolchain=stable --profile=minimal -y &&
rustup show &&
rustup target add aarch64-apple-darwin &&
curl -L https://foundry.paradigm.xyz | sh &&
foundryup
CIBW_BUILD_VERBOSITY: 1
with:
output-dir: wheelhouse
package-dir: crates/hyperdrivepy
- name: upload artifacts
uses: actions/upload-artifact@v4
with:
name: cibw-wheels-${{ matrix.buildplat[0]}}-${{ matrix.buildplat[1] }}-${{ strategy.job-index }}
path: ./wheelhouse/*.whl
build-sdist:
name: Build source distribution
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Build sdist
run: pipx run build crates/hyperdrivepy --sdist
- uses: actions/upload-artifact@v4
with:
name: cibw-sdist
path: crates/hyperdrivepy/dist/*.tar.gz
upload_pypi:
needs: [build-linux, build-cibuildwheels, build-sdist, detect-changes]
runs-on: ubuntu-latest
environment: pypi
permissions:
id-token: write
# Upload only if on main and version has changed
# if: github.event_name == 'push' && github.ref == 'refs/heads/main' && needs.detect-changes.outputs.version_changed == 'true'
steps:
- uses: actions/download-artifact@v4
with:
# unpacks all CIBW artifacts into dist/
pattern: cibw-*
path: dist
merge-multiple: true
- uses: pypa/gh-action-pypi-publish@release/v1
with:
repository-url: https://pypi.org/project/hyperdrivepy/