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
a7624da1
Commit
a7624da1
authored
Jun 15, 2017
by
Grzegorz Bizon
Committed by
Clement Ho
Jun 15, 2017
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Merge branch 'fix-manual-actions' into 'master'
Do not show manual actions that cannot be run Closes #32380 See merge request !12121
parent
279f4a1c
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
25 additions
and
5 deletions
+25
-5
build.rb
app/models/ci/build.rb
+2
-2
disable-blocked-manual-actions.yml
changelogs/unreleased/disable-blocked-manual-actions.yml
+4
-0
build_spec.rb
spec/models/ci/build_spec.rb
+16
-0
deployment_spec.rb
spec/models/deployment_spec.rb
+2
-2
environment_spec.rb
spec/models/environment_spec.rb
+1
-1
No files found.
app/models/ci/build.rb
View file @
a7624da1
...
...
@@ -33,7 +33,7 @@ module Ci
scope
:with_artifacts_not_expired
,
->
()
{
with_artifacts
.
where
(
'artifacts_expire_at IS NULL OR artifacts_expire_at > ?'
,
Time
.
now
)
}
scope
:with_expired_artifacts
,
->
()
{
with_artifacts
.
where
(
'artifacts_expire_at < ?'
,
Time
.
now
)
}
scope
:last_month
,
->
()
{
where
(
'created_at > ?'
,
Date
.
today
-
1
.
month
)
}
scope
:manual_actions
,
->
()
{
where
(
when: :manual
).
relevant
}
scope
:manual_actions
,
->
()
{
where
(
when: :manual
,
status:
COMPLETED_STATUSES
+
[
:manual
])
}
mount_uploader
:artifacts_file
,
ArtifactUploader
mount_uploader
:artifacts_metadata
,
ArtifactUploader
...
...
@@ -109,7 +109,7 @@ module Ci
end
def
playable?
action?
&&
manual?
action?
&&
(
manual?
||
complete?
)
end
def
action?
...
...
changelogs/unreleased/disable-blocked-manual-actions.yml
0 → 100644
View file @
a7624da1
---
title
:
disable blocked manual actions
merge_request
:
author
:
spec/models/ci/build_spec.rb
View file @
a7624da1
...
...
@@ -21,6 +21,18 @@ describe Ci::Build, :models do
it
{
is_expected
.
to
respond_to
(
:has_trace?
)
}
it
{
is_expected
.
to
respond_to
(
:trace
)
}
describe
'.manual_actions'
do
let!
(
:manual_but_created
)
{
create
(
:ci_build
,
:manual
,
status: :created
,
pipeline:
pipeline
)
}
let!
(
:manual_but_succeeded
)
{
create
(
:ci_build
,
:manual
,
status: :success
,
pipeline:
pipeline
)
}
let!
(
:manual_action
)
{
create
(
:ci_build
,
:manual
,
pipeline:
pipeline
)
}
subject
{
described_class
.
manual_actions
}
it
{
is_expected
.
to
include
(
manual_action
)
}
it
{
is_expected
.
to
include
(
manual_but_succeeded
)
}
it
{
is_expected
.
not_to
include
(
manual_but_created
)
}
end
describe
'#actionize'
do
context
'when build is a created'
do
before
do
...
...
@@ -926,6 +938,10 @@ describe Ci::Build, :models do
context
'when other build is retried'
do
let!
(
:retried_build
)
{
Ci
::
Build
.
retry
(
other_build
,
user
)
}
before
do
retried_build
.
success
end
it
'returns a retried build'
do
is_expected
.
to
contain_exactly
(
retried_build
)
end
...
...
spec/models/deployment_spec.rb
View file @
a7624da1
...
...
@@ -102,7 +102,7 @@ describe Deployment, models: true do
end
context
'with other actions'
do
let!
(
:close_action
)
{
create
(
:ci_build
,
pipeline:
build
.
pipeline
,
name:
'close_app'
,
when: :manual
)
}
let!
(
:close_action
)
{
create
(
:ci_build
,
:manual
,
pipeline:
build
.
pipeline
,
name:
'close_app'
)
}
context
'when matching action is defined'
do
let
(
:deployment
)
{
FactoryGirl
.
build
(
:deployment
,
deployable:
build
,
on_stop:
'close_other_app'
)
}
...
...
@@ -130,7 +130,7 @@ describe Deployment, models: true do
context
'when matching action is defined'
do
let
(
:build
)
{
create
(
:ci_build
)
}
let
(
:deployment
)
{
FactoryGirl
.
build
(
:deployment
,
deployable:
build
,
on_stop:
'close_app'
)
}
let!
(
:close_action
)
{
create
(
:ci_build
,
pipeline:
build
.
pipeline
,
name:
'close_app'
,
when: :manual
)
}
let!
(
:close_action
)
{
create
(
:ci_build
,
:manual
,
pipeline:
build
.
pipeline
,
name:
'close_app'
)
}
it
{
is_expected
.
to
be_truthy
}
end
...
...
spec/models/environment_spec.rb
View file @
a7624da1
...
...
@@ -170,7 +170,7 @@ describe Environment, models: true do
context
'when matching action is defined'
do
let
(
:build
)
{
create
(
:ci_build
)
}
let!
(
:deployment
)
{
create
(
:deployment
,
environment:
environment
,
deployable:
build
,
on_stop:
'close_app'
)
}
let!
(
:close_action
)
{
create
(
:ci_build
,
pipeline:
build
.
pipeline
,
name:
'close_app'
,
when: :manual
)
}
let!
(
:close_action
)
{
create
(
:ci_build
,
:manual
,
pipeline:
build
.
pipeline
,
name:
'close_app'
)
}
context
'when environment is available'
do
before
do
...
...
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