gitlab-org--gitlab-foss/db/fixtures/development/14_builds.rb

13 lines
342 B
Ruby
Raw Normal View History

2015-12-16 09:13:34 -05:00
Gitlab::Seeder.quiet do
project = Project.first
commits = project.repository.commits('master', nil, 10)
commits_sha = commits.map { |commit| commit.raw.id }
ci_commits = commits_sha.map do |sha|
project.ensure_ci_commit(sha)
end
ci_commits.each do |ci_commit|
ci_commit.create_builds('master', nil, User.first)
end
end