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

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

FactoryBot.define do
  factory :ci_running_build, class: 'Ci::RunningBuild' do
    build factory: :ci_build
    project
    runner factory: :ci_runner
    runner_type { runner.runner_type }
  end
end