Bug 1183927 - Add env vars for git fuzzing repos - r=hwine
authorChris Cooper <ccooper@deadsquid.com>
Mon, 28 Sep 2015 14:24:31 +0300 (2015-09-28)
changeset 4470 43f6c81ad29a8cfabd138fbdaddeab4e929a2bdc
parent 4467 fc060e2b8aa309a6e1f2d469f3effdca3754aa67
child 4472 03644c855bb4c9cfcf32faaa8681321579d0ae1b
child 4474 b7f3c09d04d16eae276b99d3bcf446f030d2b9c5
push id3738
push usercoop@mozilla.com
push dateMon, 28 Sep 2015 11:58:11 +0000 (2015-09-28)
reviewershwine
bugs1183927
Bug 1183927 - Add env vars for git fuzzing repos - r=hwine
misc.py
--- 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']),