fix: add LLVM installation for macOS in getting-started workflow

macOS runner needs libclang for rocksdb compilation.
Install llvm via homebrew and set LIBCLANG_PATH.
This commit is contained in:
2026-01-25 05:11:13 +03:00
parent 644397d5e6
commit d74f77be4b
@@ -215,6 +215,11 @@ jobs:
- name: Checkout
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
- name: Install LLVM (provides libclang for rocksdb)
run: |
brew install llvm
echo "LIBCLANG_PATH=$(brew --prefix llvm)/lib" >> $GITHUB_ENV
- name: Set additional expect flags if necessary
run: |
# Add a debug flag to expect, if github is re-run with debug logging enabled.