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
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
gitlab-ce
Commits
58a56a03
Commit
58a56a03
authored
Dec 17, 2015
by
Kamil Trzcinski
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Don't create CI status for refs that doesn't have .gitlab-ci.yml, even if the builds are enabled
parent
b2c593da
Changes
6
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
30 additions
and
20 deletions
+30
-20
CHANGELOG
CHANGELOG
+1
-0
app/models/ci/commit.rb
app/models/ci/commit.rb
+0
-10
app/services/create_commit_builds_service.rb
app/services/create_commit_builds_service.rb
+16
-2
app/views/projects/commit/_commit_box.html.haml
app/views/projects/commit/_commit_box.html.haml
+1
-1
app/views/projects/commits/_commit.html.haml
app/views/projects/commits/_commit.html.haml
+1
-1
spec/services/create_commit_builds_service_spec.rb
spec/services/create_commit_builds_service_spec.rb
+11
-6
No files found.
CHANGELOG
View file @
58a56a03
...
...
@@ -26,6 +26,7 @@ v 8.3.0 (unreleased)
- Migrate all CI::Services and CI::WebHooks to Services and WebHooks
- Don't show project fork event as "imported"
- Add API endpoint to fetch merge request commits list
- Don't create CI status for refs that doesn't have .gitlab-ci.yml, even if the builds are enabled
- Expose events API with comment information and author info
- Fix: Ensure "Remove Source Branch" button is not shown when branch is being deleted. #3583
- Run custom Git hooks when branch is created or deleted.
...
...
app/models/ci/commit.rb
View file @
58a56a03
...
...
@@ -218,16 +218,6 @@ module Ci
update!
(
committed_at:
DateTime
.
now
)
end
##
# This method checks if build status should be displayed.
#
# Build status should be available only if builds are enabled
# on project level and `.gitlab-ci.yml` file is present.
#
def
show_build_status?
project
.
builds_enabled?
&&
ci_yaml_file
end
private
def
save_yaml_error
(
error
)
...
...
app/services/create_commit_builds_service.rb
View file @
58a56a03
...
...
@@ -16,9 +16,23 @@ class CreateCommitBuildsService
return
false
end
tag
=
Gitlab
::
Git
.
tag_ref?
(
origin_ref
)
commit
=
project
.
ensure_ci_commit
(
sha
)
commit
=
project
.
ci_commit
(
sha
)
unless
commit
commit
=
project
.
ci_commits
.
new
(
sha:
sha
)
# Skip creating ci_commit when no gitlab-ci.yml is found
unless
commit
.
ci_yaml_file
return
false
end
# Create a new ci_commit
commit
.
save!
end
# Skip creating builds for commits that have [ci skip]
unless
commit
.
skip_ci?
# Create builds for commit
tag
=
Gitlab
::
Git
.
tag_ref?
(
origin_ref
)
commit
.
update_committed!
commit
.
create_builds
(
ref
,
tag
,
user
)
end
...
...
app/views/projects/commit/_commit_box.html.haml
View file @
58a56a03
...
...
@@ -40,7 +40,7 @@
-
@commit
.
parents
.
each
do
|
parent
|
=
link_to
parent
.
short_id
,
namespace_project_commit_path
(
@project
.
namespace
,
@project
,
parent
),
class:
"monospace"
-
if
@ci_commit
&&
@ci_commit
.
show_build_status?
-
if
@ci_commit
.pull-right
=
link_to
ci_status_path
(
@ci_commit
),
class:
"ci-status ci-
#{
@ci_commit
.
status
}
"
do
=
ci_status_icon
(
@ci_commit
)
...
...
app/views/projects/commits/_commit.html.haml
View file @
58a56a03
...
...
@@ -17,7 +17,7 @@
%a
.text-expander.js-toggle-button
...
.pull-right
-
if
ci_commit
&&
ci_commit
.
show_build_status?
-
if
ci_commit
=
render_ci_status
(
ci_commit
)
=
clipboard_button
(
clipboard_text:
commit
.
id
)
...
...
spec/services/create_commit_builds_service_spec.rb
View file @
58a56a03
...
...
@@ -52,7 +52,7 @@ describe CreateCommitBuildsService, services: true do
end
end
it
'skips c
ommit
s without .gitlab-ci.yml'
do
it
'skips c
reating ci_commit for ref
s without .gitlab-ci.yml'
do
stub_ci_commit_yaml_file
(
nil
)
result
=
service
.
execute
(
project
,
user
,
ref:
'refs/heads/0_1'
,
...
...
@@ -60,13 +60,11 @@ describe CreateCommitBuildsService, services: true do
after:
'31das312'
,
commits:
[{
message:
'Message'
}]
)
expect
(
result
).
to
be_persisted
expect
(
result
.
builds
.
any?
).
to
be_falsey
expect
(
result
.
status
).
to
eq
(
'skipped'
)
expect
(
result
.
yaml_errors
).
to
be_nil
expect
(
result
).
to
be_falsey
expect
(
Ci
::
Commit
.
count
).
to
eq
(
0
)
end
it
'
skip
s commits if yaml is invalid'
do
it
'
fail
s commits if yaml is invalid'
do
message
=
'message'
allow_any_instance_of
(
Ci
::
Commit
).
to
receive
(
:git_commit_message
)
{
message
}
stub_ci_commit_yaml_file
(
'invalid: file: file'
)
...
...
@@ -77,6 +75,7 @@ describe CreateCommitBuildsService, services: true do
after:
'31das312'
,
commits:
commits
)
expect
(
commit
).
to
be_persisted
expect
(
commit
.
builds
.
any?
).
to
be
false
expect
(
commit
.
status
).
to
eq
(
'failed'
)
expect
(
commit
.
yaml_errors
).
to_not
be_nil
...
...
@@ -97,6 +96,7 @@ describe CreateCommitBuildsService, services: true do
after:
'31das312'
,
commits:
commits
)
expect
(
commit
).
to
be_persisted
expect
(
commit
.
builds
.
any?
).
to
be
false
expect
(
commit
.
status
).
to
eq
(
"skipped"
)
end
...
...
@@ -112,6 +112,7 @@ describe CreateCommitBuildsService, services: true do
commits:
commits
)
expect
(
commit
).
to
be_persisted
expect
(
commit
.
builds
.
first
.
name
).
to
eq
(
"staging"
)
end
...
...
@@ -124,6 +125,7 @@ describe CreateCommitBuildsService, services: true do
after:
'31das312'
,
commits:
commits
)
expect
(
commit
).
to
be_persisted
expect
(
commit
.
builds
.
any?
).
to
be
false
expect
(
commit
.
status
).
to
eq
(
"skipped"
)
expect
(
commit
.
yaml_errors
).
to
be_nil
...
...
@@ -140,6 +142,7 @@ describe CreateCommitBuildsService, services: true do
after:
'31das312'
,
commits:
commits
)
expect
(
commit
).
to
be_persisted
expect
(
commit
.
builds
.
count
(
:all
)).
to
eq
(
2
)
commit
=
service
.
execute
(
project
,
user
,
...
...
@@ -148,6 +151,7 @@ describe CreateCommitBuildsService, services: true do
after:
'31das312'
,
commits:
commits
)
expect
(
commit
).
to
be_persisted
expect
(
commit
.
builds
.
count
(
:all
)).
to
eq
(
2
)
end
...
...
@@ -163,6 +167,7 @@ describe CreateCommitBuildsService, services: true do
commits:
commits
)
expect
(
commit
).
to
be_persisted
expect
(
commit
.
status
).
to
eq
(
"failed"
)
expect
(
commit
.
builds
.
any?
).
to
be
false
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