summaryrefslogtreecommitdiff
path: root/lib/gitlab/ci/config/node/script.rb
blob: c044f5c5e717b38edb77c22b8fcee2f9978065c0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
module Gitlab
  module Ci
    class Config
      module Node
        ##
        # Entry that represents a script.
        #
        # Each element in the value array is a command that will be executed
        # by GitLab Runner. Currently we concatenate these commands with
        # new line character as a separator, what is compatible with
        # implementation in Runner.
        #
        class Script < Entry
          include Validatable

          validations do
            validates :config, array_of_strings: true
          end

          def value
            @config.join("\n")
          end
        end
      end
    end
  end
end