debian-mirror-gitlab/app/views/ci/lints/_create.html.haml

46 lines
1.1 KiB
Text
Raw Normal View History

2015-09-25 12:07:36 +05:30
- if @status
%p
%b Status:
syntax is correct
%i.fa.fa-ok.correct-syntax
2015-11-26 14:37:03 +05:30
.table-holder
%table.table.table-bordered
%thead
%tr
%th Parameter
%th Value
%tbody
- @stages.each do |stage|
- @builds.select { |build| build[:stage] == stage }.each do |build|
%tr
%td #{stage.capitalize} Job - #{build[:name]}
%td
2016-10-01 15:18:49 +05:30
%pre= build[:commands]
2015-09-25 12:07:36 +05:30
2015-11-26 14:37:03 +05:30
%br
%b Tag list:
2016-11-03 12:29:30 +05:30
= build[:tag_list].to_a.join(", ")
2015-11-26 14:37:03 +05:30
%br
%b Refs only:
2016-11-03 12:29:30 +05:30
= @jobs[build[:name].to_sym][:only].to_a.join(", ")
2015-11-26 14:37:03 +05:30
%br
%b Refs except:
2016-11-03 12:29:30 +05:30
= @jobs[build[:name].to_sym][:except].to_a.join(", ")
%br
%b Environment:
= build[:environment]
2015-11-26 14:37:03 +05:30
%br
%b When:
= build[:when]
- if build[:allow_failure]
%b Allowed to fail
2015-09-25 12:07:36 +05:30
-else
%p
%b Status:
syntax is incorrect
%i.fa.fa-remove.incorrect-syntax
%b Error:
= @error