Skip to content

Commit 1bd2197

Browse files
committed
Install cmake for macos.
1 parent 392a114 commit 1bd2197

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

buildscripts/kokoro/macos.sh

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,14 @@
11
#!/bin/bash
22
set -veux -o pipefail
3+
CMAKE_VERSION=3.26.3
34

45
if [[ -f /VERSION ]]; then
56
cat /VERSION
67
fi
78

89
readonly GRPC_JAVA_DIR="$(cd "$(dirname "$0")"/../.. && pwd)"
910

11+
brew install cmake@${CMAKE_VERSION}
1012
# We had problems with random tests timing out because it took seconds to do
1113
# trivial (ns) operations. The Kokoro Mac machines have 2 cores with 4 logical
1214
# threads, so Gradle should be using 4 workers by default.

buildscripts/make_dependencies.sh

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@ set -evux -o pipefail
55

66
PROTOBUF_VERSION=33.1
77
ABSL_VERSION=20250127.1
8-
CMAKE_VERSION=3.26.3
98

109
# ARCH is x86_64 bit unless otherwise specified.
1110
ARCH="${ARCH:-x86_64}"

0 commit comments

Comments
 (0)