gitlab-org--gitlab-foss/app/views/ci/lints/_create.html.haml

46 lines
1.1 KiB
Plaintext
Raw Normal View History

2015-08-25 21:42:46 -04:00
- if @status
%p
%b Status:
syntax is correct
%i.fa.fa-ok.correct-syntax
2015-08-25 21:42:46 -04:00
2015-10-19 05:19:45 -04:00
.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
%pre= build[:commands]
2015-08-25 21:42:46 -04:00
2015-10-19 05:19:45 -04:00
%br
%b Tag list:
2016-09-20 11:28:54 -04:00
= build[:tag_list].to_a.join(", ")
2015-10-19 05:19:45 -04:00
%br
%b Refs only:
2016-09-20 11:28:54 -04:00
= @jobs[build[:name].to_sym][:only].to_a.join(", ")
2015-10-19 05:19:45 -04:00
%br
%b Refs except:
2016-09-20 11:28:54 -04:00
= @jobs[build[:name].to_sym][:except].to_a.join(", ")
2015-10-23 05:40:57 -04:00
%br
2016-09-09 04:51:44 -04:00
%b Environment:
= build[:environment]
%br
2015-10-23 05:40:57 -04:00
%b When:
= build[:when]
- if build[:allow_failure]
2015-10-23 07:37:37 -04:00
%b Allowed to fail
2015-08-25 21:42:46 -04:00
-else
%p
%b Status:
syntax is incorrect
%i.fa.fa-remove.incorrect-syntax
2015-08-25 21:42:46 -04:00
%b Error:
= @error