From aaf19a832133cf6a4c278e4e201405e347867db3 Mon Sep 17 00:00:00 2001 From: Chenchu K Date: Thu, 21 Jul 2022 15:28:39 -0500 Subject: [PATCH] Increase osx_cc_configure timeouts (#15942) People see a lot of timeouts on these calls, especially when using github actions. Bumping them a bit shouldn't hurt the common case but might help this issue. Related: https://github.com/bazelbuild/bazel/issues/14113 Closes #15877. PiperOrigin-RevId: 462325991 Change-Id: I61819f558eed7964ac9fee1d9ff5171689e01aa5 Co-authored-by: Keith Smiley --- tools/cpp/osx_cc_configure.bzl | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tools/cpp/osx_cc_configure.bzl b/tools/cpp/osx_cc_configure.bzl index 4bfa61807a0e2e..3e76a8e02f2587 100644 --- a/tools/cpp/osx_cc_configure.bzl +++ b/tools/cpp/osx_cc_configure.bzl @@ -71,7 +71,7 @@ def _compile_cc_file_single_arch(repository_ctx, src_name, out_name): "-o", out_name, src_name, - ], 30) + ], 60) if (xcrun_result.return_code != 0): error_msg = ( "return code {code}, stderr: {err}, stdout: {out}" @@ -107,7 +107,7 @@ def _compile_cc_file(repository_ctx, src_name, out_name): "-o", out_name, src_name, - ], 30) + ], 60) if xcrun_result.return_code == 0: xcrun_result = repository_ctx.execute([ @@ -120,7 +120,7 @@ def _compile_cc_file(repository_ctx, src_name, out_name): "--sign", "-", out_name, - ], 30) + ], 60) if xcrun_result.return_code != 0: error_msg = ( "codesign return code {code}, stderr: {err}, stdout: {out}"