Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions src/clusterfuzz/_internal/system/environment.py
Original file line number Diff line number Diff line change
Expand Up @@ -1020,6 +1020,12 @@ def set_bot_environment():
from clusterfuzz._internal.config import local_config
local_config.ProjectConfig().set_environment()

# Tmp: set gcloud_storage flag for android/MAC bots
# to validate the gsutil migration on these platforms.
if is_android() or platform() == 'MAC':
os.environ['USE_GCLOUD_STORAGE_CP'] = 'True'
os.environ['USE_GCLOUD_STORAGE_RSYNC'] = '1'

# Success.
return True

Expand Down
Loading