<%= project.name %>

<< back

<%= project.build_status %>

<% builds = project.builds current = builds.select { |b| b.commit == project.current_build }.first latest = builds.select { |b| b.commit == project.latest_build }.first %>

Overview

Current : <% unless current.nil? %> <%= current.commit %> <% end %>
Latest successful : <% unless latest.nil? %> <%= latest == current ? "current" : latest.commit %> <% end %>
Integration branch : <%= project.integration_branch %>
Configure <%= project.name %>



Build history

<% project.log.each do |line| %><% build = nil %><%= ansi_color_codes line[:graph] %><%= line[:commit] %><% if (build = line[:build]) %><%= ansi_color_codes(line[:message]) %> [<%= build.status %>] (<%= build.date %>, <%= build.author.gsub '<', '<' %>)<% else %><%= ansi_color_codes line[:message] %><% end %>
<% end %>