Welcome to mirror list, hosted at ThFree Co, Russian Federation.

base.rb « prerequisite « build « ci « gitlab « lib - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 156aa22d95b2b42935908a469f484827b4f8632b (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
# frozen_string_literal: true

module Gitlab
  module Ci
    module Build
      module Prerequisite
        class Base
          include Utils::StrongMemoize

          attr_reader :build

          def initialize(build)
            @build = build
          end

          def unmet?
            raise NotImplementedError
          end

          def complete!
            raise NotImplementedError
          end
        end
      end
    end
  end
end