Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
1
Merge Requests
1
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
gitlab-ce
Commits
5f67bf74
Commit
5f67bf74
authored
Dec 16, 2015
by
Grzegorz Bizon
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Improve CI builds fixtures
parent
ff2d1dd2
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
21 additions
and
8 deletions
+21
-8
db/fixtures/development/14_builds.rb
db/fixtures/development/14_builds.rb
+21
-8
No files found.
db/fixtures/development/14_builds.rb
View file @
5f67bf74
Gitlab
::
Seeder
.
quiet
do
Gitlab
::
Seeder
.
quiet
do
project
=
Project
.
first
Project
.
all
.
sample
(
5
).
each
do
|
project
|
commits
=
project
.
repository
.
commits
(
'master'
,
nil
,
10
)
commits
=
project
.
repository
.
commits
(
'master'
,
nil
,
10
)
commits_sha
=
commits
.
map
{
|
commit
|
commit
.
raw
.
id
}
commits_sha
=
commits
.
map
{
|
commit
|
commit
.
raw
.
id
}
ci_commits
=
commits_sha
.
map
do
|
sha
|
ci_commits
=
commits_sha
.
map
do
|
sha
|
...
@@ -7,6 +7,19 @@ Gitlab::Seeder.quiet do
...
@@ -7,6 +7,19 @@ Gitlab::Seeder.quiet do
end
end
ci_commits
.
each
do
|
ci_commit
|
ci_commits
.
each
do
|
ci_commit
|
ci_commit
.
create_builds
(
'master'
,
nil
,
User
.
first
)
attributes
=
{
type:
'Ci::Build'
,
name:
'test build'
,
commands:
"$ build command"
,
stage:
'test'
,
stage_idx:
1
,
ref:
'master'
,
user_id:
User
.
first
,
gl_project_id:
project
.
id
,
options:
'---- opts'
,
status:
%w(running pending success failed canceled)
.
sample
,
commit_id:
ci_commit
.
id
}
begin
Ci
::
Build
.
create!
(
attributes
)
print
'.'
rescue
ActiveRecord
::
RecordInvalid
print
'F'
end
end
end
end
end
end
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment