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

runner_machine_builds.rb « ci « factories « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 34238760112eadcb7f7d820f3f55835b42394a1d (plain)
1
2
3
4
5
6
7
8
# frozen_string_literal: true

FactoryBot.define do
  factory :ci_runner_machine_build, class: 'Ci::RunnerManagerBuild' do
    build factory: :ci_build, scheduling_type: :dag
    runner_manager factory: :ci_runner_machine
  end
end