Fixed MR handling when GitLab CI project is not present
This commit is contained in:
parent
183892fde9
commit
ca6fd0a27d
2 changed files with 8 additions and 3 deletions
|
@ -46,7 +46,9 @@ class GitlabCiService < CiService
|
|||
end
|
||||
|
||||
ci_project = Ci::Project.find_by(gitlab_id: project.id)
|
||||
Ci::CreateCommitService.new.execute(ci_project, data)
|
||||
if ci_project
|
||||
Ci::CreateCommitService.new.execute(ci_project, data)
|
||||
end
|
||||
end
|
||||
|
||||
def get_ci_commit(sha, ref)
|
||||
|
@ -85,7 +87,9 @@ class GitlabCiService < CiService
|
|||
end
|
||||
|
||||
def build_page(sha, ref)
|
||||
Ci::RoutesHelper.ci_project_ref_commits_path(project.gitlab_ci_project, ref, sha)
|
||||
if project.gitlab_ci_project.present?
|
||||
Ci::RoutesHelper.ci_project_ref_commits_path(project.gitlab_ci_project, ref, sha)
|
||||
end
|
||||
end
|
||||
|
||||
def title
|
||||
|
|
|
@ -10,7 +10,8 @@
|
|||
%span CI build #{status}
|
||||
for #{@merge_request.last_commit_short_sha}.
|
||||
%span.ci-coverage
|
||||
= link_to "View build details", ci_build_details_path(@merge_request), :"data-no-turbolink" => "data-no-turbolink"
|
||||
- if ci_build_details_path(@merge_request)
|
||||
= link_to "View build details", ci_build_details_path(@merge_request), :"data-no-turbolink" => "data-no-turbolink"
|
||||
|
||||
.ci_widget
|
||||
= icon("spinner spin")
|
||||
|
|
Loading…
Reference in a new issue