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 a09aea8 commit 015ed97Copy full SHA for 015ed97
.github/workflows/test-and-publish.yaml
@@ -88,6 +88,13 @@ jobs:
88
if: ${{ matrix.os == 'macos-13' && steps.cache-spidermonkey.outputs.cache-hit != 'true' }}
89
# SpiderMonkey requires XCode SDK version at least 13.3
90
run: sudo xcode-select -switch /Applications/Xcode_14.3.app
91
+ - name: Setup LLVM
92
+ if: ${{ (matrix.os == 'macos-13' || matrix.os == 'macos-14') && steps.cache-spidermonkey.outputs.cache-hit != 'true' }}
93
+ run: |
94
+ brew install llvm@15
95
+ ln -s $(brew --prefix llvm@15)/bin/lld /usr/local/bin/lld
96
+ ln -s $(brew --prefix llvm@15)/bin/ld64.lld /usr/local/bin/ld64.lld
97
+ ld64.lld --version
98
- name: Build spidermonkey
99
if: ${{ steps.cache-spidermonkey.outputs.cache-hit != 'true' }}
100
run: ./setup.sh
0 commit comments