Bug 1413349: Remove oboslete comments about missing taskcluster mozharness support on windows; r?dustin draft
authorTom Prince <mozilla@hocat.ca>
Tue, 31 Oct 2017 16:29:06 -0600
changeset 689693 8b732ec4246aaa151b529a979a3cbe6dd6454965
parent 689688 05c2b066a2ee56918ea728b6c59d56e8f8d4a17f
child 738380 d1117378273b02e93a4fc60ca6bdfa695098b064
push id87093
push userbmo:mozilla@hocat.ca
push dateTue, 31 Oct 2017 22:29:32 +0000
reviewersdustin
bugs1413349
milestone58.0a1
Bug 1413349: Remove oboslete comments about missing taskcluster mozharness support on windows; r?dustin MozReview-Commit-ID: KGnWttzs6lt
taskcluster/taskgraph/transforms/job/mozharness.py
--- a/taskcluster/taskgraph/transforms/job/mozharness.py
+++ b/taskcluster/taskgraph/transforms/job/mozharness.py
@@ -33,25 +33,23 @@ mozharness_run_schema = Schema({
     # the mozharness script used to run this task, relative to the testing/
     # directory and using forward slashes even on Windows
     Required('script'): basestring,
 
     # the config files required for the task, relative to
     # testing/mozharness/configs and using forward slashes even on Windows
     Required('config'): [basestring],
 
-    # any additional actions to pass to the mozharness command; not supported
-    # on Windows
+    # any additional actions to pass to the mozharness command
     Optional('actions'): [basestring],
 
-    # any additional options (without leading --) to be passed to mozharness;
-    # not supported on Windows
+    # any additional options (without leading --) to be passed to mozharness
     Optional('options'): [basestring],
 
-    # --custom-build-variant-cfg value (not supported on Windows)
+    # --custom-build-variant-cfg value
     Optional('custom-build-variant-cfg'): basestring,
 
     # Extra metadata to use toward the workspace caching.
     # Only supported on docker-worker
     Optional('extra-workspace-cache-key'): basestring,
 
     # If not false, tooltool downloads will be enabled via relengAPIProxy
     # for either just public files, or all files.  Not supported on Windows