forked from mirrors/gecko-dev
		
	 2e749d3e5a
			
		
	
	
		2e749d3e5a
		
	
	
	
	
		
			
			Differential Revision: https://phabricator.services.mozilla.com/D992 --HG-- extra : rebase_source : 66571663a4f3455a3f5b9d5afa616c48a35e46ad extra : source : f292fad571a41e45706cd75a0b0afde7feff58e0 extra : histedit_source : 304e44cef85dfe8514748db3fad484a09cbca727
		
			
				
	
	
		
			19 lines
		
	
	
	
		
			509 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
	
		
			509 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/.
 | |
| """
 | |
| FIXME
 | |
| """
 | |
| 
 | |
| from __future__ import absolute_import, print_function, unicode_literals
 | |
| 
 | |
| from taskgraph.transforms.base import TransformSequence
 | |
| 
 | |
| transforms = TransformSequence()
 | |
| 
 | |
| 
 | |
| @transforms.add
 | |
| def strip_dependent_task(config, jobs):
 | |
|     for job in jobs:
 | |
|         del job['dependent-task']
 | |
|         yield job
 |