We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cba0ac2 commit ac8f532Copy full SHA for ac8f532
1 file changed
ci/kokoro/macos/builds/cmake-vcpkg.sh
@@ -28,9 +28,25 @@ NCPU="$(sysctl -n hw.logicalcpu)"
28
readonly NCPU
29
30
io::log_h2 "Update or install dependencies"
31
+
32
+io::log_h2 "DEBUG: Brew version before update"
33
+brew --version
34
+io::log_h2 "DEBUG: Brew doctor before update"
35
+brew doctor
36
37
+# TEMPORARY WORKAROUND for outdated homebrew in Kokoro images.
38
+echo "==> Forcefully resetting Homebrew"
39
brew update-reset
40
41
+io::log_h2 "DEBUG: Brew version after update-reset"
42
43
+io::log_h2 "DEBUG: Brew doctor after update-reset"
44
45
46
# Install bash and ninja
47
+io::log_h2 "DEBUG: Before brew install bash ninja"
48
brew install bash ninja
49
+io::log_h2 "DEBUG: After brew install bash ninja"
50
51
# Install a specific version of CMake to match our GHA builds
52
(
0 commit comments