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
1
Merge Requests
1
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
nexedi
gitlab-ce
Commits
3ff35230
Commit
3ff35230
authored
Jul 07, 2021
by
GitLab Bot
Browse files
Options
Browse Files
Download
Plain Diff
Automatic merge of gitlab-org/gitlab master
parents
ffd55e74
2e7bda2d
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
18 additions
and
10 deletions
+18
-10
app/assets/javascripts/pages/shared/wikis/components/wiki_form.vue
...s/javascripts/pages/shared/wikis/components/wiki_form.vue
+1
-1
ee/app/views/layouts/nav/sidebar/_profile_billing_link.html.haml
...views/layouts/nav/sidebar/_profile_billing_link.html.haml
+1
-1
ee/app/views/layouts/nav/sidebar/_profile_usage_quotas_link.html.haml
.../layouts/nav/sidebar/_profile_usage_quotas_link.html.haml
+1
-1
spec/features/projects/pipelines/pipeline_spec.rb
spec/features/projects/pipelines/pipeline_spec.rb
+15
-7
No files found.
app/assets/javascripts/pages/shared/wikis/components/wiki_form.vue
View file @
3ff35230
...
@@ -461,7 +461,7 @@ export default {
...
@@ -461,7 +461,7 @@ export default {
</markdown-field>
</markdown-field>
<div
v-if=
"isContentEditorActive"
>
<div
v-if=
"isContentEditorActive"
>
<gl-alert
class=
"gl-mb-6"
variant=
"tip"
:dismiss
a
ble=
"false"
>
<gl-alert
class=
"gl-mb-6"
variant=
"tip"
:dismiss
i
ble=
"false"
>
<gl-sprintf
:message=
"$options.i18n.contentEditor.feedbackTip"
>
<gl-sprintf
:message=
"$options.i18n.contentEditor.feedbackTip"
>
<
template
<
template
#link=
"// eslint-disable-next-line vue/no-template-shadow
#link=
"// eslint-disable-next-line vue/no-template-shadow
...
...
ee/app/views/layouts/nav/sidebar/_profile_billing_link.html.haml
View file @
3ff35230
...
@@ -2,7 +2,7 @@
...
@@ -2,7 +2,7 @@
=
nav_link
(
controller: :billings
)
do
=
nav_link
(
controller: :billings
)
do
=
link_to
profile_billings_path
do
=
link_to
profile_billings_path
do
.nav-icon-container
.nav-icon-container
=
custom_icon
(
'credit_
card'
)
=
sprite_icon
(
'credit-
card'
)
%span
.nav-item-name
%span
.nav-item-name
=
_
(
"Billing"
)
=
_
(
"Billing"
)
%ul
.sidebar-sub-level-items.is-fly-out-only
%ul
.sidebar-sub-level-items.is-fly-out-only
...
...
ee/app/views/layouts/nav/sidebar/_profile_usage_quotas_link.html.haml
View file @
3ff35230
=
nav_link
(
controller: :usage_quotas
)
do
=
nav_link
(
controller: :usage_quotas
)
do
=
link_to
profile_usage_quotas_path
do
=
link_to
profile_usage_quotas_path
do
.nav-icon-container
.nav-icon-container
=
custom
_icon
(
'pipeline'
)
=
sprite
_icon
(
'pipeline'
)
%span
.nav-item-name
%span
.nav-item-name
=
s_
(
'UsageQuota|Usage Quotas'
)
=
s_
(
'UsageQuota|Usage Quotas'
)
%ul
.sidebar-sub-level-items.is-fly-out-only
%ul
.sidebar-sub-level-items.is-fly-out-only
...
...
spec/features/projects/pipelines/pipeline_spec.rb
View file @
3ff35230
...
@@ -7,7 +7,8 @@ RSpec.describe 'Pipeline', :js do
...
@@ -7,7 +7,8 @@ RSpec.describe 'Pipeline', :js do
include
ProjectForksHelper
include
ProjectForksHelper
include
::
ExclusiveLeaseHelpers
include
::
ExclusiveLeaseHelpers
let
(
:project
)
{
create
(
:project
)
}
let_it_be
(
:project
)
{
create
(
:project
)
}
let
(
:user
)
{
create
(
:user
)
}
let
(
:user
)
{
create
(
:user
)
}
let
(
:role
)
{
:developer
}
let
(
:role
)
{
:developer
}
...
@@ -59,8 +60,9 @@ RSpec.describe 'Pipeline', :js do
...
@@ -59,8 +60,9 @@ RSpec.describe 'Pipeline', :js do
describe
'GET /:project/-/pipelines/:id'
do
describe
'GET /:project/-/pipelines/:id'
do
include_context
'pipeline builds'
include_context
'pipeline builds'
let
(
:group
)
{
create
(
:group
)
}
let_it_be
(
:group
)
{
create
(
:group
)
}
let
(
:project
)
{
create
(
:project
,
:repository
,
group:
group
)
}
let_it_be
(
:project
,
reload:
true
)
{
create
(
:project
,
:repository
,
group:
group
)
}
let
(
:pipeline
)
{
create
(
:ci_pipeline
,
project:
project
,
ref:
'master'
,
sha:
project
.
commit
.
id
,
user:
user
)
}
let
(
:pipeline
)
{
create
(
:ci_pipeline
,
project:
project
,
ref:
'master'
,
sha:
project
.
commit
.
id
,
user:
user
)
}
subject
(
:visit_pipeline
)
{
visit
project_pipeline_path
(
project
,
pipeline
)
}
subject
(
:visit_pipeline
)
{
visit
project_pipeline_path
(
project
,
pipeline
)
}
...
@@ -246,6 +248,8 @@ RSpec.describe 'Pipeline', :js do
...
@@ -246,6 +248,8 @@ RSpec.describe 'Pipeline', :js do
end
end
context
'when pipeline has a delayed job'
do
context
'when pipeline has a delayed job'
do
let
(
:project
)
{
create
(
:project
,
:repository
,
group:
group
)
}
it
'shows the scheduled icon and an unschedule action for the delayed job'
do
it
'shows the scheduled icon and an unschedule action for the delayed job'
do
page
.
within
(
'#ci-badge-delayed-job'
)
do
page
.
within
(
'#ci-badge-delayed-job'
)
do
expect
(
page
).
to
have_selector
(
'.js-ci-status-icon-scheduled'
)
expect
(
page
).
to
have_selector
(
'.js-ci-status-icon-scheduled'
)
...
@@ -550,6 +554,7 @@ RSpec.describe 'Pipeline', :js do
...
@@ -550,6 +554,7 @@ RSpec.describe 'Pipeline', :js do
end
end
context
'when pipeline is merge request pipeline'
do
context
'when pipeline is merge request pipeline'
do
let
(
:project
)
{
create
(
:project
,
:repository
,
group:
group
)
}
let
(
:source_project
)
{
project
}
let
(
:source_project
)
{
project
}
let
(
:target_project
)
{
project
}
let
(
:target_project
)
{
project
}
...
@@ -634,7 +639,8 @@ RSpec.describe 'Pipeline', :js do
...
@@ -634,7 +639,8 @@ RSpec.describe 'Pipeline', :js do
describe
'GET /:project/-/pipelines/:id'
do
describe
'GET /:project/-/pipelines/:id'
do
include_context
'pipeline builds'
include_context
'pipeline builds'
let
(
:project
)
{
create
(
:project
,
:repository
)
}
let_it_be
(
:project
)
{
create
(
:project
,
:repository
)
}
let
(
:pipeline
)
{
create
(
:ci_pipeline
,
project:
project
,
ref:
'master'
,
sha:
project
.
commit
.
id
,
user:
user
)
}
let
(
:pipeline
)
{
create
(
:ci_pipeline
,
project:
project
,
ref:
'master'
,
sha:
project
.
commit
.
id
,
user:
user
)
}
before
do
before
do
...
@@ -997,7 +1003,8 @@ RSpec.describe 'Pipeline', :js do
...
@@ -997,7 +1003,8 @@ RSpec.describe 'Pipeline', :js do
describe
'GET /:project/-/pipelines/:id/builds'
do
describe
'GET /:project/-/pipelines/:id/builds'
do
include_context
'pipeline builds'
include_context
'pipeline builds'
let
(
:project
)
{
create
(
:project
,
:repository
)
}
let_it_be
(
:project
)
{
create
(
:project
,
:repository
)
}
let
(
:pipeline
)
{
create
(
:ci_pipeline
,
project:
project
,
ref:
'master'
,
sha:
project
.
commit
.
id
)
}
let
(
:pipeline
)
{
create
(
:ci_pipeline
,
project:
project
,
ref:
'master'
,
sha:
project
.
commit
.
id
)
}
before
do
before
do
...
@@ -1234,7 +1241,8 @@ RSpec.describe 'Pipeline', :js do
...
@@ -1234,7 +1241,8 @@ RSpec.describe 'Pipeline', :js do
describe
'GET /:project/-/pipelines/:id/dag'
do
describe
'GET /:project/-/pipelines/:id/dag'
do
include_context
'pipeline builds'
include_context
'pipeline builds'
let
(
:project
)
{
create
(
:project
,
:repository
)
}
let_it_be
(
:project
)
{
create
(
:project
,
:repository
)
}
let
(
:pipeline
)
{
create
(
:ci_pipeline
,
project:
project
,
ref:
'master'
,
sha:
project
.
commit
.
id
)
}
let
(
:pipeline
)
{
create
(
:ci_pipeline
,
project:
project
,
ref:
'master'
,
sha:
project
.
commit
.
id
)
}
before
do
before
do
...
@@ -1263,7 +1271,7 @@ RSpec.describe 'Pipeline', :js do
...
@@ -1263,7 +1271,7 @@ RSpec.describe 'Pipeline', :js do
end
end
context
'when user sees pipeline flags in a pipeline detail page'
do
context
'when user sees pipeline flags in a pipeline detail page'
do
let
(
:project
)
{
create
(
:project
,
:repository
)
}
let
_it_be
(
:project
)
{
create
(
:project
,
:repository
)
}
context
'when pipeline is latest'
do
context
'when pipeline is latest'
do
include_context
'pipeline builds'
include_context
'pipeline builds'
...
...
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