BigW Consortium Gitlab
Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
G
gitlab-ce
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
Forest Godfrey
gitlab-ce
Commits
3f85c3ef
Commit
3f85c3ef
authored
Oct 06, 2016
by
Kamil Trzcinski
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Initial support for closing environments
parent
2c01b19f
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
58 additions
and
2 deletions
+58
-2
build.rb
app/models/ci/build.rb
+4
-0
deployment.rb
app/models/deployment.rb
+13
-0
environment.rb
app/models/environment.rb
+18
-0
create_deployment_service.rb
app/services/create_deployment_service.rb
+11
-1
20161006104309_add_state_to_environment.rb
db/migrate/20161006104309_add_state_to_environment.rb
+9
-0
environment.rb
lib/gitlab/ci/config/node/environment.rb
+3
-1
No files found.
app/models/ci/build.rb
View file @
3f85c3ef
...
...
@@ -110,6 +110,10 @@ module Ci
project
.
builds_enabled?
&&
commands
.
present?
&&
manual?
&&
skipped?
end
def
closes_environment?
(
name
)
environment
==
name
&&
options
.
fetch
(
:environment
,
{}).
fetch
(
:close
,
false
)
end
def
play
(
current_user
=
nil
)
# Try to queue a current build
if
self
.
enqueue
...
...
app/models/deployment.rb
View file @
3f85c3ef
...
...
@@ -77,6 +77,19 @@ class Deployment < ActiveRecord::Base
take
end
def
close_action
return
nil
unless
manual_actions
@close_action
||=
manual_actions
.
find
do
|
manual_action
|
manual_action
.
try
(
:closes_environment?
,
deployable
.
environment
)
end
end
def
closeable?
close_action
.
present?
end
private
def
ref_path
...
...
app/models/environment.rb
View file @
3f85c3ef
...
...
@@ -19,6 +19,24 @@ class Environment < ActiveRecord::Base
allow_nil:
true
,
addressable_url:
true
delegate
:closeable?
,
:close_action
,
to: :last_deployment
,
allow_nil:
true
scope
:opened
,
->
{
where
(
state:
[
:opened
])
}
scope
:closed
,
->
{
where
(
state:
[
:closed
])
}
state_machine
:state
,
initial: :opened
do
event
:close
do
transition
opened: :closed
end
event
:reopen
do
transition
closed: :opened
end
state
:opened
state
:closed
end
def
last_deployment
deployments
.
last
end
...
...
app/services/create_deployment_service.rb
View file @
3f85c3ef
...
...
@@ -4,6 +4,13 @@ class CreateDeploymentService < BaseService
def
execute
(
deployable
=
nil
)
environment
=
find_or_create_environment
if
close?
environment
.
close
return
end
environment
.
reopen
deployment
=
project
.
deployments
.
create
(
environment:
environment
,
ref:
params
[
:ref
],
...
...
@@ -14,7 +21,6 @@ class CreateDeploymentService < BaseService
)
deployment
.
update_merge_request_metrics!
deployment
end
...
...
@@ -44,6 +50,10 @@ class CreateDeploymentService < BaseService
options
[
:url
]
end
def
close?
options
[
:close
]
end
def
options
params
[
:options
]
||
{}
end
...
...
db/migrate/20161006104309_add_state_to_environment.rb
0 → 100644
View file @
3f85c3ef
class
AddStateToEnvironment
<
ActiveRecord
::
Migration
include
Gitlab
::
Database
::
MigrationHelpers
DOWNTIME
=
false
def
change
add_column
:environments
,
:state
,
:string
end
end
lib/gitlab/ci/config/node/environment.rb
View file @
3f85c3ef
...
...
@@ -8,7 +8,7 @@ module Gitlab
class
Environment
<
Entry
include
Validatable
ALLOWED_KEYS
=
%i[name url]
ALLOWED_KEYS
=
%i[name url
close
]
validations
do
validate
do
...
...
@@ -35,6 +35,8 @@ module Gitlab
length:
{
maximum:
255
},
addressable_url:
true
,
allow_nil:
true
validates
:close
,
boolean:
true
,
allow_nil:
true
end
end
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment