Bug 1307204 - use c: drive for build and hg cache; r?gps draft
authorRob Thijssen <rthijssen@mozilla.com>
Fri, 21 Oct 2016 16:51:47 +0100
changeset 428137 1485a2ab71e4b06ca596c06cc6778cbf8a989bd5
parent 427779 f0f1aaf051d6798e1e73d1feee07ca847333167a
child 534657 a27256cdd782f31aa82e2b73ea2ddfcfb6e7635c
push id33228
push userrthijssen@mozilla.com
push dateFri, 21 Oct 2016 15:53:02 +0000
reviewersgps
bugs1307204
milestone52.0a1
Bug 1307204 - use c: drive for build and hg cache; r?gps MozReview-Commit-ID: G9wMLRa89g4
taskcluster/taskgraph/transforms/job/mozharness.py
--- a/taskcluster/taskgraph/transforms/job/mozharness.py
+++ b/taskcluster/taskgraph/transforms/job/mozharness.py
@@ -203,23 +203,23 @@ def mozharness_on_windows(config, job, t
         'TOOLTOOL_REV': 'master',
     })
 
     mh_command = [r'c:\mozilla-build\python\python.exe']
     mh_command.append('\\'.join([r'.\build\src\testing', run['script'].replace('/', '\\')]))
     for cfg in run['config']:
         mh_command.append('--config ' + cfg.replace('/', '\\'))
     mh_command.append('--branch ' + config.params['project'])
-    mh_command.append(r'--skip-buildbot-actions --work-dir %cd:Z:=z:%\build')
+    mh_command.append(r'--skip-buildbot-actions --work-dir %cd:C:=c:%\build')
     for option in run.get('options', []):
         mh_command.append('--' + option)
 
     hg_command = ['"c:\\Program Files\\Mercurial\\hg.exe"']
     hg_command.append('robustcheckout')
-    hg_command.extend(['--sharebase', 'y:\\hg-shared'])
+    hg_command.extend(['--sharebase', 'C:\\builds\\hg-shared'])
     hg_command.append('--purge')
     hg_command.extend(['--upstream', 'https://hg.mozilla.org/mozilla-unified'])
     hg_command.extend(['--revision', env['GECKO_HEAD_REV']])
     hg_command.append(env['GECKO_HEAD_REPOSITORY'])
     hg_command.append('.\\build\\src')
 
     worker['command'] = [
         ' '.join(hg_command),