diff --git a/.github/actions/build-dependencies/action.yml b/.github/actions/build-dependencies/action.yml index bd7ca5c7..d1ca0836 100644 --- a/.github/actions/build-dependencies/action.yml +++ b/.github/actions/build-dependencies/action.yml @@ -43,8 +43,8 @@ runs: choco install protoc elif [ "$RUNNER_OS" == "macOS" ]; then brew install protobuf llvm - HOMEBREW_ROOT_PATH=/opt/homebrew # macOS 14+ - if [ $(sw_vers -productVersion | awk -F "." '{ print $1 }') = "13" ]; then HOMEBREW_ROOT_PATH=/usr/local; fi # macOS 13 + HOMEBREW_ROOT_PATH=/opt/homebrew # Apple Silicon + if [ $(uname -m) = "x86_64" ]; then HOMEBREW_ROOT_PATH=/usr/local; fi # Intel ls $HOMEBREW_ROOT_PATH/opt/llvm/lib | grep "libclang.dylib" # Make sure this installed `libclang` echo "DYLD_LIBRARY_PATH=$HOMEBREW_ROOT_PATH/opt/llvm/lib:$DYLD_LIBRARY_PATH" >> "$GITHUB_ENV" fi diff --git a/.github/nightly-version b/.github/nightly-version index 10423e5c..a93c5dd4 100644 --- a/.github/nightly-version +++ b/.github/nightly-version @@ -1 +1 @@ -nightly-2025-09-01 +nightly-2025-09-25