diff --git a/.azure-pipelines/pipelines.yml b/.azure-pipelines/pipelines.yml index f8c5ce9721740..06bdb2d41a416 100644 --- a/.azure-pipelines/pipelines.yml +++ b/.azure-pipelines/pipelines.yml @@ -294,7 +294,6 @@ jobs: NO_BUILD_SETUP: 1 - job: macOS - dependsOn: ["format"] timeoutInMinutes: 360 pool: vmImage: "macos-latest" diff --git a/ci/mac_ci_setup.sh b/ci/mac_ci_setup.sh index 395c3297fe62b..c7cd4301f0258 100755 --- a/ci/mac_ci_setup.sh +++ b/ci/mac_ci_setup.sh @@ -37,7 +37,14 @@ function retry () { return "$returns" } -if ! retry brew update; then +set +e +git -C $(brew --repo) remote show origin +git -C $(brew --repo homebrew/core) remote show origin +brew gist-logs homebrew-core +brew gist-logs core +set -e + +if ! retry brew update --debug --verbose; then echo "Failed to update homebrew" exit 1 fi