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
e38b858f
Commit
e38b858f
authored
Jun 11, 2018
by
GitLab Bot
Browse files
Options
Browse Files
Download
Plain Diff
Merge remote-tracking branch 'upstream/master' into ce-to-ee-2018-06-11
# Conflicts: # Gemfile.lock [ci skip]
parents
11d47876
a239936a
Changes
6
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
21 additions
and
9 deletions
+21
-9
Gemfile.lock
Gemfile.lock
+6
-0
app/assets/javascripts/clusters/stores/clusters_store.js
app/assets/javascripts/clusters/stores/clusters_store.js
+1
-1
app/assets/javascripts/sidebar/components/time_tracking/comparison_pane.vue
...ipts/sidebar/components/time_tracking/comparison_pane.vue
+5
-6
qa/qa/page/project/job/show.rb
qa/qa/page/project/job/show.rb
+5
-0
qa/qa/specs/features/project/deploy_key_clone_spec.rb
qa/qa/specs/features/project/deploy_key_clone_spec.rb
+3
-1
spec/javascripts/clusters/stores/clusters_store_spec.js
spec/javascripts/clusters/stores/clusters_store_spec.js
+1
-1
No files found.
Gemfile.lock
View file @
e38b858f
...
...
@@ -336,7 +336,10 @@ GEM
diff-lcs (~> 1.1)
mime-types (>= 1.16)
posix-spawn (~> 0.3)
<<<<<<< HEAD
gitlab-license (1.0.0)
=======
>>>>>>> upstream/master
gitlab-markup (1.6.4)
gitlab-styles (2.3.2)
rubocop (~> 0.51)
...
...
@@ -1078,7 +1081,10 @@ DEPENDENCIES
gitlab-flowdock-git-hook (~> 1.0.1)
gitlab-gollum-lib (~> 4.2)
gitlab-gollum-rugged_adapter (~> 0.4.4)
<<<<<<< HEAD
gitlab-license (~> 1.0)
=======
>>>>>>> upstream/master
gitlab-markup (~> 1.6.4)
gitlab-styles (~> 2.3)
gitlab_omniauth-ldap (~> 2.0.4)
...
...
app/assets/javascripts/clusters/stores/clusters_store.js
View file @
e38b858f
...
...
@@ -95,7 +95,7 @@ export default class ClusterStore {
this
.
state
.
applications
.
jupyter
.
hostname
=
serverAppEntry
.
hostname
||
(
this
.
state
.
applications
.
ingress
.
externalIp
?
`jupyter.
${
this
.
state
.
applications
.
ingress
.
externalIp
}
.
x
ip.io`
?
`jupyter.
${
this
.
state
.
applications
.
ingress
.
externalIp
}
.
n
ip.io`
:
''
);
}
});
...
...
app/assets/javascripts/sidebar/components/time_tracking/comparison_pane.vue
View file @
e38b858f
<
script
>
import
{
parseSeconds
,
stringifyTime
}
from
'
../../../lib/utils/pretty_time
'
;
import
tooltip
from
'
../../../vue_shared/directives/tooltip
'
;
export
default
{
name
:
'
TimeTrackingComparisonPane
'
,
directives
:
{
tooltip
,
},
props
:
{
timeSpent
:
{
type
:
Number
,
...
...
@@ -51,17 +55,12 @@ export default {
<div
class=
"time-tracking-comparison-pane"
>
<div
class=
"compare-meter"
data-toggle=
"tooltip"
data-placement=
"top"
role=
"timeRemainingDisplay"
:aria-valuenow=
"timeRemainingTooltip"
:title=
"timeRemainingTooltip"
:data-original-title=
"timeRemainingTooltip"
v-tooltip
:class=
"timeRemainingStatusClass"
>
<div
class=
"meter-container"
role=
"timeSpentPercent"
:aria-valuenow=
"timeRemainingPercent"
>
<div
...
...
qa/qa/page/project/job/show.rb
View file @
e38b858f
...
...
@@ -6,6 +6,7 @@ module QA::Page
view
'app/views/shared/builds/_build_output.html.haml'
do
element
:build_output
,
'.js-build-output'
element
:loading_animation
,
'.js-build-refresh'
end
view
'app/assets/javascripts/vue_shared/components/ci_badge_link.vue'
do
...
...
@@ -20,6 +21,10 @@ module QA::Page
find
(
'.ci-status'
).
text
==
PASSED_STATUS
end
def
trace_loading?
has_css?
(
'.js-build-refresh'
)
end
# Reminder: You may wish to wait for a particular job status before checking output
def
output
find
(
'.js-build-output'
).
text
...
...
qa/qa/specs/features/project/deploy_key_clone_spec.rb
View file @
e38b858f
...
...
@@ -92,7 +92,9 @@ module QA
Page
::
Project
::
Pipeline
::
Show
.
act
{
go_to_first_job
}
Page
::
Project
::
Job
::
Show
.
perform
do
|
job
|
job
.
wait
(
reload:
false
)
{
job
.
completed?
}
job
.
wait
(
reload:
false
)
do
job
.
completed?
&&
!
job
.
trace_loading?
end
expect
(
job
.
passed?
).
to
be_truthy
,
"Job status did not become
\"
passed
\"
."
expect
(
job
.
output
).
to
include
(
sha1sum
)
...
...
spec/javascripts/clusters/stores/clusters_store_spec.js
View file @
e38b858f
...
...
@@ -110,7 +110,7 @@ describe('Clusters Store', () => {
expect
(
store
.
state
.
applications
.
jupyter
.
hostname
,
).
toEqual
(
`jupyter.
${
store
.
state
.
applications
.
ingress
.
externalIp
}
.
x
ip.io`
);
).
toEqual
(
`jupyter.
${
store
.
state
.
applications
.
ingress
.
externalIp
}
.
n
ip.io`
);
});
});
});
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