Class: Gitlab::Ci::Build::Rules::Rule::Clause::Changes

Inherits:
Gitlab::Ci::Build::Rules::Rule::Clause show all
Includes:
Utils::StrongMemoize
Defined in:
lib/gitlab/ci/build/rules/rule/clause/changes.rb

Constant Summary

Constants inherited from Gitlab::Ci::Build::Rules::Rule::Clause

ParseError, UnknownClauseError

Instance Method Summary collapse

Methods inherited from Gitlab::Ci::Build::Rules::Rule::Clause

fabricate

Constructor Details

#initialize(globs) ⇒ Changes

Returns a new instance of Changes.



9
10
11
# File 'lib/gitlab/ci/build/rules/rule/clause/changes.rb', line 9

def initialize(globs)
  @globs = globs
end

Instance Method Details

#satisfied_by?(pipeline, context) ⇒ Boolean

Returns:

  • (Boolean)


13
14
15
16
17
18
19
20
21
22
23
24
# File 'lib/gitlab/ci/build/rules/rule/clause/changes.rb', line 13

def satisfied_by?(pipeline, context)
  modified_paths = find_modified_paths(pipeline)

  return true unless modified_paths

  expanded_globs = expand_globs(context)
  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