From d5fb521ef54f949262bbc4e10e393131c1fcbf97 Mon Sep 17 00:00:00 2001 From: Aaron Sky Date: Mon, 17 Nov 2025 07:09:45 -0500 Subject: [PATCH] Passthrough http proxy settings to bazel runners Signed-off-by: Aaron Sky --- xcodeproj/internal/templates/bazel_build.sh | 6 ++++++ xcodeproj/internal/templates/runner.sh | 6 ++++++ 2 files changed, 12 insertions(+) diff --git a/xcodeproj/internal/templates/bazel_build.sh b/xcodeproj/internal/templates/bazel_build.sh index b8cc91ec1..6ca8be921 100755 --- a/xcodeproj/internal/templates/bazel_build.sh +++ b/xcodeproj/internal/templates/bazel_build.sh @@ -69,6 +69,12 @@ readonly allowed_vars=( "BUILD_WORKSPACE_DIRECTORY" "DEVELOPER_DIR" "HOME" + "HTTP_PROXY" + "http_proxy" + "HTTPS_PROXY" + "https_proxy" + "NO_PROXY" + "no_proxy" "SSH_AUTH_SOCK" "TERM" "USER" diff --git a/xcodeproj/internal/templates/runner.sh b/xcodeproj/internal/templates/runner.sh index 15b7800c1..84887a14d 100644 --- a/xcodeproj/internal/templates/runner.sh +++ b/xcodeproj/internal/templates/runner.sh @@ -204,6 +204,12 @@ fi readonly allowed_vars=( "BUILD_WORKSPACE_DIRECTORY" "HOME" + "HTTP_PROXY" + "http_proxy" + "HTTPS_PROXY" + "https_proxy" + "NO_PROXY" + "no_proxy" "SSH_AUTH_SOCK" "TERM" "USER"