Commit a459f7dc authored by Nico Weber's avatar Nico Weber Committed by Commit Bot

mac: Remove buildbot-only toolchain creds code.

buildbot was turned down a while ago, so this should no longer be needed.

Bug: 986488
Change-Id: Ie7496a5647814f6d526bfe212a4637873c90a37b
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2212318
Auto-Submit: Nico Weber <thakis@chromium.org>
Commit-Queue: Erik Chen <erikchen@chromium.org>
Reviewed-by: default avatarErik Chen <erikchen@chromium.org>
Cr-Commit-Position: refs/heads/master@{#771286}
parent 5da68647
...@@ -107,13 +107,6 @@ def InstallXcodeBinaries(): ...@@ -107,13 +107,6 @@ def InstallXcodeBinaries():
'cipd', 'ensure', '-root', binaries_root, '-ensure-file', '-' 'cipd', 'ensure', '-root', binaries_root, '-ensure-file', '-'
] ]
# Buildbot slaves need to use explicit credentials. LUCI bots should NOT set
# this variable. This is temporary code used to make official Xcode bots
# happy. https://crbug.com/986488
creds = os.environ.get('MAC_TOOLCHAIN_CREDS')
if creds:
args.extend(['--service-account-json', creds])
p = subprocess.Popen( p = subprocess.Popen(
args, stdin=subprocess.PIPE, stdout=subprocess.PIPE, args, stdin=subprocess.PIPE, stdout=subprocess.PIPE,
stderr=subprocess.PIPE) stderr=subprocess.PIPE)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment