We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ddde5c0 commit 7df8b93Copy full SHA for 7df8b93
.github/workflows/test-and-publish.yaml
@@ -177,6 +177,13 @@ jobs:
177
echo "Installed Dependencies"
178
env:
179
PYTHON_VERSION: ${{ matrix.python_version }}
180
+ - name: Setup LLVM
181
+ if: ${{ matrix.os == 'macos-13' || matrix.os == 'macos-14' }}
182
+ run: |
183
+ brew install llvm@15
184
+ ln -s $(brew --prefix llvm@15)/bin/lld /usr/local/bin/lld
185
+ ln -s $(brew --prefix llvm@15)/bin/ld64.lld /usr/local/bin/ld64.lld
186
+ ld64.lld --version
187
- name: Build Docs # only build docs once
188
if: ${{ matrix.os == 'ubuntu-20.04' && matrix.python_version == '3.11' }}
189
run: |
0 commit comments