forked from mirrors/gecko-dev
		
	 d11db1f68c
			
		
	
	
		d11db1f68c
		
	
	
	
	
		
			
			Set these as tier 3 right now, because there are frequent intermittent test failures. MozReview-Commit-ID: Gs6AXLKaVrF --HG-- extra : rebase_source : b86c6ffd527dc8af963967c2722a3cee66a6ed3f
		
			
				
	
	
		
			24 lines
		
	
	
	
		
			795 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			24 lines
		
	
	
	
		
			795 B
		
	
	
	
		
			Python
		
	
	
	
	
	
| # This Source Code Form is subject to the terms of the Mozilla Public
 | |
| # License, v. 2.0. If a copy of the MPL was not distributed with this
 | |
| # file, You can obtain one at http://mozilla.org/MPL/2.0/.
 | |
| from __future__ import absolute_import, print_function, unicode_literals
 | |
| 
 | |
| from taskgraph.transforms.base import TransformSequence
 | |
| from taskgraph.util.schema import resolve_keyed_by
 | |
| import copy
 | |
| 
 | |
| transforms = TransformSequence()
 | |
| 
 | |
| 
 | |
| @transforms.add
 | |
| def handle_keyed_by(config, jobs):
 | |
|     """Resolve fields that can be keyed by platform, etc."""
 | |
|     fields = [
 | |
|         "toolchains"
 | |
|     ]
 | |
|     for job in jobs:
 | |
|         job = copy.deepcopy(job)  # don't overwrite dict values here
 | |
|         for field in fields:
 | |
|             resolve_keyed_by(item=job, field=field, item_name=job['name'])
 | |
| 
 | |
|         yield job
 |