Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Boxiang Sun
gitlab-ce
Commits
e58e24b4
Commit
e58e24b4
authored
Jun 05, 2019
by
Kamil Trzciński
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Revert "Merge branch..."
This reverts merge request !27503
parent
d9a761ed
Changes
7
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
16 additions
and
19 deletions
+16
-19
app/models/ci/build.rb
app/models/ci/build.rb
+1
-1
doc/ci/pipelines.md
doc/ci/pipelines.md
+0
-3
spec/features/projects/jobs_spec.rb
spec/features/projects/jobs_spec.rb
+3
-3
spec/features/projects/pipelines/pipeline_spec.rb
spec/features/projects/pipelines/pipeline_spec.rb
+4
-4
spec/lib/gitlab/ci/status/build/factory_spec.rb
spec/lib/gitlab/ci/status/build/factory_spec.rb
+4
-4
spec/models/ci/build_spec.rb
spec/models/ci/build_spec.rb
+2
-2
spec/requests/api/jobs_spec.rb
spec/requests/api/jobs_spec.rb
+2
-2
No files found.
app/models/ci/build.rb
View file @
e58e24b4
...
...
@@ -343,7 +343,7 @@ module Ci
end
def
retryable?
!
archived?
&&
(
success?
||
failed?
)
!
archived?
&&
(
success?
||
failed?
||
canceled?
)
end
def
retries_count
...
...
doc/ci/pipelines.md
View file @
e58e24b4
...
...
@@ -270,9 +270,6 @@ Clicking on an individual job will show you its job trace, and allow you to:
-
Retry the job.
-
Erase the job trace.
NOTE:
**Note:**
To prevent jobs from being bypassed or run out of order, canceled jobs can only be retried when the whole pipeline they belong to is retried.
### Seeing the failure reason for jobs
> [Introduced](https://gitlab.com/gitlab-org/gitlab-ce/merge_requests/17782) in GitLab 10.7.
...
...
spec/features/projects/jobs_spec.rb
View file @
e58e24b4
...
...
@@ -936,8 +936,8 @@ describe 'Jobs', :clean_gitlab_redis_shared_state do
find
(
'.js-cancel-job'
).
click
end
it
'loads the page and shows
no
controls'
do
expect
(
page
).
not_
to
have_content
'Retry'
it
'loads the page and shows
all needed
controls'
do
expect
(
page
).
to
have_content
'Retry'
end
end
end
...
...
@@ -946,7 +946,7 @@ describe 'Jobs', :clean_gitlab_redis_shared_state do
context
"Job from project"
,
:js
do
before
do
job
.
run!
job
.
drop!
(
:script_failure
)
job
.
cancel!
visit
project_job_path
(
project
,
job
)
wait_for_requests
...
...
spec/features/projects/pipelines/pipeline_spec.rb
View file @
e58e24b4
...
...
@@ -115,11 +115,11 @@ describe 'Pipeline', :js do
end
end
it
'cancels the running build and
does not show
retry button'
do
it
'cancels the running build and
shows
retry button'
do
find
(
'#ci-badge-deploy .ci-action-icon-container'
).
click
page
.
within
(
'#ci-badge-deploy'
)
do
expect
(
page
).
not_
to
have_css
(
'.js-icon-retry'
)
expect
(
page
).
to
have_css
(
'.js-icon-retry'
)
end
end
end
...
...
@@ -133,11 +133,11 @@ describe 'Pipeline', :js do
end
end
it
'cancels the preparing build and
does not show
retry button'
do
it
'cancels the preparing build and
shows
retry button'
do
find
(
'#ci-badge-deploy .ci-action-icon-container'
).
click
page
.
within
(
'#ci-badge-deploy'
)
do
expect
(
page
).
not_
to
have_css
(
'.js-icon-retry'
)
expect
(
page
).
to
have_css
(
'.js-icon-retry'
)
end
end
end
...
...
spec/lib/gitlab/ci/status/build/factory_spec.rb
View file @
e58e24b4
...
...
@@ -163,11 +163,11 @@ describe Gitlab::Ci::Status::Build::Factory do
it
'matches correct extended statuses'
do
expect
(
factory
.
extended_statuses
)
.
to
eq
[
Gitlab
::
Ci
::
Status
::
Build
::
Canceled
]
.
to
eq
[
Gitlab
::
Ci
::
Status
::
Build
::
Canceled
,
Gitlab
::
Ci
::
Status
::
Build
::
Retryable
]
end
it
'
does not fabricate
a retryable build status'
do
expect
(
status
).
not_
to
be_a
Gitlab
::
Ci
::
Status
::
Build
::
Retryable
it
'
fabricates
a retryable build status'
do
expect
(
status
).
to
be_a
Gitlab
::
Ci
::
Status
::
Build
::
Retryable
end
it
'fabricates status with correct details'
do
...
...
@@ -177,7 +177,7 @@ describe Gitlab::Ci::Status::Build::Factory do
expect
(
status
.
illustration
).
to
include
(
:image
,
:size
,
:title
)
expect
(
status
.
label
).
to
eq
'canceled'
expect
(
status
).
to
have_details
expect
(
status
).
not_
to
have_action
expect
(
status
).
to
have_action
end
end
...
...
spec/models/ci/build_spec.rb
View file @
e58e24b4
...
...
@@ -1294,7 +1294,7 @@ describe Ci::Build do
build
.
cancel!
end
it
{
is_expected
.
not_
to
be_retryable
}
it
{
is_expected
.
to
be_retryable
}
end
end
...
...
@@ -1824,7 +1824,7 @@ describe Ci::Build do
context
'when build has been canceled'
do
subject
{
build_stubbed
(
:ci_build
,
:manual
,
status: :canceled
)
}
it
{
is_expected
.
not_
to
be_playable
}
it
{
is_expected
.
to
be_playable
}
end
context
'when build is successful'
do
...
...
spec/requests/api/jobs_spec.rb
View file @
e58e24b4
...
...
@@ -864,7 +864,7 @@ describe API::Jobs do
end
describe
'POST /projects/:id/jobs/:job_id/retry'
do
let
(
:job
)
{
create
(
:ci_build
,
:
fai
led
,
pipeline:
pipeline
)
}
let
(
:job
)
{
create
(
:ci_build
,
:
cance
led
,
pipeline:
pipeline
)
}
before
do
post
api
(
"/projects/
#{
project
.
id
}
/jobs/
#{
job
.
id
}
/retry"
,
api_user
)
...
...
@@ -874,7 +874,7 @@ describe API::Jobs do
context
'user with :update_build permission'
do
it
'retries non-running job'
do
expect
(
response
).
to
have_gitlab_http_status
(
201
)
expect
(
project
.
builds
.
first
.
status
).
to
eq
(
'
fai
led'
)
expect
(
project
.
builds
.
first
.
status
).
to
eq
(
'
cance
led'
)
expect
(
json_response
[
'status'
]).
to
eq
(
'pending'
)
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