From 9d86bdad3ed5d9d2db7db6ebe31819b98a6a9aa1 Mon Sep 17 00:00:00 2001 From: Alexander Kernozhitsky Date: Sun, 1 Sep 2024 14:33:17 +0200 Subject: [PATCH] Try to fix the CI under macOS --- tools/ci_build.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/ci_build.py b/tools/ci_build.py index fa83179..4ae4370 100755 --- a/tools/ci_build.py +++ b/tools/ci_build.py @@ -141,7 +141,7 @@ def configure(config, storage, args): if compiler == 'clang' and comp_version != '': llvm_ver = comp_version - clang_path = '/usr/local/opt/llvm@' + llvm_ver + '/bin' + clang_path = '/opt/homebrew/opt/llvm@' + llvm_ver + '/bin' storage['cmd']['clang-tidy'] = os.path.join(clang_path, 'clang-tidy') storage['pkg']['clang-tidy'] = 'llvm@' + llvm_ver