Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'app/helpers/ci/builds_helper.rb')
-rw-r--r--app/helpers/ci/builds_helper.rb22
1 files changed, 0 insertions, 22 deletions
diff --git a/app/helpers/ci/builds_helper.rb b/app/helpers/ci/builds_helper.rb
index afd0af18ba7..8a00c0f3eb0 100644
--- a/app/helpers/ci/builds_helper.rb
+++ b/app/helpers/ci/builds_helper.rb
@@ -2,18 +2,6 @@
module Ci
module BuildsHelper
- def build_summary(build, skip: false)
- if build.has_trace?
- if skip
- link_to _('View job log'), pipeline_job_url(build.pipeline, build)
- else
- build.trace.html(last_lines: 10).html_safe
- end
- else
- _('No job log')
- end
- end
-
def sidebar_build_class(build, current_build)
build_class = []
build_class << 'active' if build.id === current_build.id
@@ -36,15 +24,5 @@ module Ci
description: project_job_url(@project, @build)
}
end
-
- def prepare_failed_jobs_summary_data(failed_builds)
- failed_builds.map do |build|
- {
- id: build.id,
- failure: build.present.callout_failure_message,
- failure_summary: build_summary(build)
- }
- end.to_json
- end
end
end