We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a90cb72 commit f4366a2Copy full SHA for f4366a2
1 file changed
.github/workflows/build-upload-wheels.yml
@@ -38,11 +38,11 @@ jobs:
38
run: python -m pip install cibuildwheel==3.1.4
39
40
- name: Build wheels {{ matrix.os }}
41
+ # Set LLVM_VERSION for the host and cibuildwheel environment.
42
env:
43
LLVM_VERSION: "15.0.7"
- run: |
44
- python -m cibuildwheel --output-dir wheelhouse
45
-
+ CIBW_ENVIRONMENT: "LLVM_VERSION=15.0.7"
+ run: python -m cibuildwheel --output-dir wheelhouse
46
47
- uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02
48
with:
@@ -57,6 +57,8 @@ jobs:
57
fetch-depth: 0
58
59
- name: Build sdist
60
+ env:
61
+ LLVM_VERSION: "15.0.7"
62
run: pipx run build --sdist
63
64
0 commit comments