Bug 1183927 - Add env vars for git fuzzing repos - r=hwine
--- a/misc.py
+++ b/misc.py
@@ -2861,18 +2861,19 @@ def generateFuzzingObjects(config, SLAVE
reboot_command=['python',
'scripts/buildfarm/maintenance/count_and_reboot.py',
'-f', './reboot_count.txt',
'-n', '0',
'-z'],
)
for platform in config['platforms']:
env = MozillaEnvironments.get("%s-unittest" % platform, {}).copy()
- env['HG_BUNDLE'] = config['fuzzing_bundle']
- env['HG_REPO'] = config['fuzzing_repo']
+ env['GIT_LITHIUM_REPO'] = config['lithium_repo']
+ env['GIT_FUNFUZZ_REPO'] = config['funfuzz_repo']
+ env['GIT_FUNFUZZ_PRIVATE_REPO'] = config['funfuzz_private_repo']
env['FUZZ_REMOTE_HOST'] = config['fuzzing_remote_host']
env['FUZZ_BASE_DIR'] = config['fuzzing_base_dir']
if 'win' in platform:
env['PATH'] = "${MOZILLABUILD}buildbotve\\scripts;${PATH}"
builder = {'name': 'fuzzer-%s' % platform,
'builddir': 'fuzzer-%s' % platform,
'slavenames': SLAVES[platform],
'nextSlave': _nextIdleSlave(config['idle_slaves']),