debian-mirror-gitlab/spec/factories/ci/runner_machine_builds.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

9 lines
232 B
Ruby
Raw Normal View History

2023-05-27 22:25:52 +05:30
# frozen_string_literal: true
FactoryBot.define do
2023-06-20 00:43:36 +05:30
factory :ci_runner_machine_build, class: 'Ci::RunnerManagerBuild' do
2023-05-27 22:25:52 +05:30
build factory: :ci_build, scheduling_type: :dag
2023-06-20 00:43:36 +05:30
runner_manager factory: :ci_runner_machine
2023-05-27 22:25:52 +05:30
end
end