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: 0181def26ba57360cf166c837e3823cfd2f6f4b3 (plain)
1
2
3
4
5
6
7
8
# frozen_string_literal: true

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