gitlab-org--gitlab-foss/lib/gitlab/ci/pipeline/seed/base.rb
Kamil Trzciński 93e9518215 Require needs: to be present
This changes the `needs:` logic to require
that all jobs to be present. Instead of skipping
do fail the pipeline creation if `needs:` dependency
is not found.
2019-08-13 15:07:21 +02:00

27 lines
461 B
Ruby

# frozen_string_literal: true
module Gitlab
module Ci
module Pipeline
module Seed
class Base
def attributes
raise NotImplementedError
end
def included?
raise NotImplementedError
end
def errors
raise NotImplementedError
end
def to_resource
raise NotImplementedError
end
end
end
end
end
end