33 lines
		
	
	
		
			824 B
		
	
	
	
		
			Ruby
		
	
	
	
			
		
		
	
	
			33 lines
		
	
	
		
			824 B
		
	
	
	
		
			Ruby
		
	
	
	
| # frozen_string_literal: true
 | |
| 
 | |
| module Gitlab
 | |
|   module Ci
 | |
|     module Build
 | |
|       class Rules::Rule::Clause::Changes < Rules::Rule::Clause
 | |
|         def initialize(globs)
 | |
|           @globs = Array(globs)
 | |
|         end
 | |
| 
 | |
|         def satisfied_by?(pipeline, context)
 | |
|           return true if pipeline.modified_paths.nil?
 | |
| 
 | |
|           expanded_globs = expand_globs(context)
 | |
|           pipeline.modified_paths.any? do |path|
 | |
|             expanded_globs.any? do |glob|
 | |
|               File.fnmatch?(glob, path, File::FNM_PATHNAME | File::FNM_DOTMATCH | File::FNM_EXTGLOB)
 | |
|             end
 | |
|           end
 | |
|         end
 | |
| 
 | |
|         def expand_globs(context)
 | |
|           return @globs unless context
 | |
| 
 | |
|           @globs.map do |glob|
 | |
|             ExpandVariables.expand_existing(glob, context.variables)
 | |
|           end
 | |
|         end
 | |
|       end
 | |
|     end
 | |
|   end
 | |
| end
 |