summaryrefslogtreecommitdiff
path: root/app/views/projects/builds
diff options
context:
space:
mode:
authorAnnabel Dunstone Gray <annabel.dunstone@gmail.com>2016-11-02 17:25:19 -0500
committerAnnabel Dunstone Gray <annabel.dunstone@gmail.com>2016-11-08 16:50:03 -0600
commit73467bd1634898632d1c9c4e5879546ec9f53032 (patch)
tree971425b9dfd88c42d1a2a28661fba81b129ac803 /app/views/projects/builds
parent52c06647b58a8c78c29a79a5647962c065d9ef86 (diff)
downloadgitlab-ce-73467bd1634898632d1c9c4e5879546ec9f53032.tar.gz
Add switch statement & last_deployment method
Diffstat (limited to 'app/views/projects/builds')
-rw-r--r--app/views/projects/builds/show.html.haml22
1 files changed, 19 insertions, 3 deletions
diff --git a/app/views/projects/builds/show.html.haml b/app/views/projects/builds/show.html.haml
index 4614d0af906..6741be25ace 100644
--- a/app/views/projects/builds/show.html.haml
+++ b/app/views/projects/builds/show.html.haml
@@ -26,12 +26,28 @@
= link_to namespace_project_runners_path(@build.project.namespace, @build.project) do
Runners page
- - if @build.stage == 'deploy'
+ - if @build.deploy
.prepend-top-default
.environment-information
= ci_icon_for_status(@build.status)
- This build is the most recent deployment to
- = link_to @build.environment, namespace_project_environment_path(@project.namespace, @project, @build.environment)
+
+ - if @build.last_deployment
+ This build is the most recent deployment to
+ = link_to @build.environment, namespace_project_environment_path(@project.namespace, @project, @build.environment)
+ - else
+ - case @build.status
+ - when 'failed', 'canceled'
+ The deployment of this build to
+ = link_to @build.environment, namespace_project_environment_path(@project.namespace, @project, @build.environment)
+ did not complete
+ - when 'pending', 'running'
+ This build is creating a deployment to
+ = link_to @build.environment, namespace_project_environment_path(@project.namespace, @project, @build.environment)
+ and will overwrite the latest deployment
+ - when 'success'
+ This build is an out-of-date deployment to
+ = link_to @build.environment, namespace_project_environment_path(@project.namespace, @project, @build.environment)
+ View the most recent deployment #24869
.prepend-top-default
- if @build.erased?