From 51a0f222ecbbbcbaf59dfc16115c5eaa4db6a4b3 Mon Sep 17 00:00:00 2001 From: Kurdistan Tech Ministry Date: Sun, 25 Jan 2026 05:11:13 +0300 Subject: [PATCH] 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. --- .github/workflows/check-getting-started.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/check-getting-started.yml b/.github/workflows/check-getting-started.yml index e29cc302..bbf78ff0 100644 --- a/.github/workflows/check-getting-started.yml +++ b/.github/workflows/check-getting-started.yml @@ -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.