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

49 lines
1.3 KiB
Text
Raw Normal View History

2015-09-25 12:07:36 +05:30
- if @status
%p
2019-03-02 22:35:43 +05:30
%b= _("Status:")
= _("syntax is correct")
2015-09-25 12:07:36 +05:30
%i.fa.fa-ok.correct-syntax
2015-11-26 14:37:03 +05:30
.table-holder
%table.table.table-bordered
%thead
%tr
2019-03-02 22:35:43 +05:30
%th= _("Parameter")
%th= _("Value")
2015-11-26 14:37:03 +05:30
%tbody
- @stages.each do |stage|
- @builds.select { |build| build[:stage] == stage }.each do |build|
2019-02-15 15:39:39 +05:30
- job = @jobs[build[:name].to_sym]
2015-11-26 14:37:03 +05:30
%tr
%td #{stage.capitalize} Job - #{build[:name]}
%td
2019-02-15 15:39:39 +05:30
%pre= job[:before_script].to_a.join('\n')
%pre= job[:script].to_a.join('\n')
%pre= job[:after_script].to_a.join('\n')
2015-09-25 12:07:36 +05:30
2015-11-26 14:37:03 +05:30
%br
2019-03-02 22:35:43 +05:30
%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
2019-03-02 22:35:43 +05:30
%b= _("Only policy:")
2019-02-15 15:39:39 +05:30
= job[:only].to_a.join(", ")
2015-11-26 14:37:03 +05:30
%br
2019-03-02 22:35:43 +05:30
%b= _("Except policy:")
2019-02-15 15:39:39 +05:30
= job[:except].to_a.join(", ")
2016-11-03 12:29:30 +05:30
%br
2019-03-02 22:35:43 +05:30
%b= _("Environment:")
2016-11-03 12:29:30 +05:30
= build[:environment]
2015-11-26 14:37:03 +05:30
%br
2019-03-02 22:35:43 +05:30
%b= _("When:")
2015-11-26 14:37:03 +05:30
= build[:when]
- if build[:allow_failure]
2019-03-02 22:35:43 +05:30
%b= _("Allowed to fail")
2015-09-25 12:07:36 +05:30
2017-08-17 22:00:37 +05:30
- else
2015-09-25 12:07:36 +05:30
%p
2019-03-02 22:35:43 +05:30
%b= _("Status:")
= _("syntax is incorrect")
2015-09-25 12:07:36 +05:30
%i.fa.fa-remove.incorrect-syntax
2019-03-02 22:35:43 +05:30
%b= _("Error:")
2015-09-25 12:07:36 +05:30
= @error