Fix small CI UI regressions
This commit is contained in:
parent
0e73d7b6af
commit
127836dd54
6 changed files with 15 additions and 8 deletions
|
@ -22,6 +22,8 @@ v 8.1.0
|
|||
- Fix error preventing displaying of commit data for a directory with a leading dot (Stan Hu)
|
||||
- Speed up load times of issue detail pages by roughly 1.5x
|
||||
- Require CI jobs to be named
|
||||
- Fix CI rendering regressions
|
||||
- Allow developer to manage builds
|
||||
- If a merge request is to close an issue, show this on the issue page (Zeger-Jan van de Weg)
|
||||
- Add a system note and update relevant merge requests when a branch is deleted or re-added (Stan Hu)
|
||||
- Make diff file view easier to use on mobile screens (Stan Hu)
|
||||
|
|
|
@ -31,7 +31,7 @@ class CiBuild
|
|||
$('#build-trace code').html build.trace_html
|
||||
$('#build-trace code').append '<i class="fa fa-refresh fa-spin"/>'
|
||||
@checkAutoscroll()
|
||||
else
|
||||
else if build.status != build_status
|
||||
Turbolinks.visit build_url
|
||||
, 4000
|
||||
|
||||
|
|
|
@ -9,16 +9,17 @@ class Projects::BuildsController < Projects::ApplicationController
|
|||
def index
|
||||
@scope = params[:scope]
|
||||
@all_builds = project.ci_builds
|
||||
@builds = @all_builds.order('created_at DESC')
|
||||
@builds =
|
||||
case @scope
|
||||
when 'all'
|
||||
@all_builds
|
||||
@builds
|
||||
when 'finished'
|
||||
@all_builds.finished
|
||||
@builds.finished
|
||||
else
|
||||
@all_builds.running_or_pending
|
||||
@builds.running_or_pending.reverse_order
|
||||
end
|
||||
@builds = @builds.order('created_at DESC').page(params[:page]).per(30)
|
||||
@builds = @builds.page(params[:page]).per(30)
|
||||
end
|
||||
|
||||
def cancel_all
|
||||
|
|
|
@ -20,7 +20,6 @@ class CommitStatus < ActiveRecord::Base
|
|||
scope :latest, -> { where(id: unscope(:select).select('max(id)').group(:name, :ref)) }
|
||||
scope :ordered, -> { order(:ref, :stage_idx, :name) }
|
||||
scope :for_ref, ->(ref) { where(ref: ref) }
|
||||
scope :running_or_pending, -> { where(status: [:running, :pending]) }
|
||||
|
||||
state_machine :status, initial: :pending do
|
||||
event :run do
|
||||
|
|
|
@ -17,7 +17,7 @@
|
|||
%td #{stage.capitalize} Job - #{build[:name]}
|
||||
%td
|
||||
%pre
|
||||
= simple_format build[:script]
|
||||
= simple_format build[:commands]
|
||||
|
||||
%br
|
||||
%b Tag list:
|
||||
|
@ -28,6 +28,11 @@
|
|||
%br
|
||||
%b Refs except:
|
||||
= build[:except] && build[:except].join(", ")
|
||||
%br
|
||||
%b When:
|
||||
= build[:when]
|
||||
- if build[:allow_failure]
|
||||
%b Allowed to fail
|
||||
|
||||
-else
|
||||
%p
|
||||
|
|
|
@ -155,7 +155,7 @@
|
|||
|
||||
- if @builds.present?
|
||||
.build-widget
|
||||
%h4.title #{pluralize(@builds.count, "other build")} for #{@build.short_sha}:
|
||||
%h4.title #{pluralize(@builds.count(:id), "other build")} for #{@build.short_sha}:
|
||||
%table.table.builds
|
||||
- @builds.each_with_index do |build, i|
|
||||
%tr.build
|
||||
|
|
Loading…
Reference in a new issue