BigW Consortium Gitlab
Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
G
gitlab-ce
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
Forest Godfrey
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
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
21 additions
and
8 deletions
+21
-8
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
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
Project
.
all
.
sample
(
5
).
each
do
|
project
|
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
|
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
}
ci_commits
.
each
do
|
ci_commit
|
ci_commit
.
create_builds
(
'master'
,
nil
,
User
.
first
)
begin
Ci
::
Build
.
create!
(
attributes
)
print
'.'
rescue
ActiveRecord
::
RecordInvalid
print
'F'
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