diff --git a/buildbot/master/files/config/environments.py b/buildbot/master/files/config/environments.py index 464fc561..868040ab 100644 --- a/buildbot/master/files/config/environments.py +++ b/buildbot/master/files/config/environments.py @@ -136,8 +136,5 @@ def without(self, to_unset): upload_nightly = Environment({ 'AWS_ACCESS_KEY_ID': S3_UPLOAD_ACCESS_KEY_ID, 'AWS_SECRET_ACCESS_KEY': S3_UPLOAD_SECRET_ACCESS_KEY, -}) - -update_brew = Environment({ - 'TOKEN': GITHUB_HOMEBREW_TOKEN, + 'GITHUB_HOMEBREW_TOKEN': GITHUB_HOMEBREW_TOKEN, }) diff --git a/buildbot/master/files/config/factories.py b/buildbot/master/files/config/factories.py index c914be06..2aa2d9b4 100644 --- a/buildbot/master/files/config/factories.py +++ b/buildbot/master/files/config/factories.py @@ -226,11 +226,6 @@ def make_step(self, command): r'C:\Program Files\Amazon\cfn-bootstrap', ]) - # Set token for homebrew repository - elif arg == './etc/ci/update_brew.sh': - step_kwargs['logEnviron'] = False - step_env += envs.update_brew - else: step_desc += [arg]