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
Léo-Paul Géneau
gitlab-ce
Commits
f698fdbd
Commit
f698fdbd
authored
Dec 16, 2019
by
GitLab Bot
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add latest changes from gitlab-org/gitlab@master
parent
6af29c94
Changes
10
Hide whitespace changes
Inline
Side-by-side
Showing
10 changed files
with
111 additions
and
41 deletions
+111
-41
changelogs/unreleased/55706-remove-ci_commit_ref-docs.yml
changelogs/unreleased/55706-remove-ci_commit_ref-docs.yml
+5
-0
doc/ci/junit_test_reports.md
doc/ci/junit_test_reports.md
+26
-0
doc/ci/variables/README.md
doc/ci/variables/README.md
+2
-2
doc/ci/yaml/README.md
doc/ci/yaml/README.md
+2
-0
doc/topics/autodevops/index.md
doc/topics/autodevops/index.md
+24
-23
qa/qa/flow/login.rb
qa/qa/flow/login.rb
+10
-10
qa/qa/page/project/job/show.rb
qa/qa/page/project/job/show.rb
+1
-1
qa/qa/runtime/env.rb
qa/qa/runtime/env.rb
+1
-1
qa/qa/service/cluster_provider/gcloud.rb
qa/qa/service/cluster_provider/gcloud.rb
+32
-4
spec/lib/gitlab/sidekiq_middleware_spec.rb
spec/lib/gitlab/sidekiq_middleware_spec.rb
+8
-0
No files found.
changelogs/unreleased/55706-remove-ci_commit_ref-docs.yml
0 → 100644
View file @
f698fdbd
---
title
:
Replace CI_COMMIT_REF with CI_COMMIT_SHA on CI docs
merge_request
:
21781
author
:
Takuya Noguchi
type
:
other
doc/ci/junit_test_reports.md
View file @
f698fdbd
...
...
@@ -171,6 +171,32 @@ cpp:
junit
:
report.xml
```
### .Net example
The
[
JunitXML.TestLogger
](
https://www.nuget.org/packages/JunitXml.TestLogger/
)
NuGet
package can generate test reports for .Net Framework and .Net Core applications. The following
example expects a solution in the root folder of the repository, with one or more
project files in sub-folders. One result file is produced per test project, and each file
is placed in a new artifacts folder. This example includes optional formatting arguments, which
improve the readability of test data in the test widget. A full .Net Core
[
example is available
](
https://gitlab.com/Siphonophora/dot-net-cicd-test-logging-demo
)
.
```
yaml
## Source code and documentation are here: https://github.com/spekt/junit.testlogger/
Test
:
stage
:
test
script
:
-
'
dotnet
test
--test-adapter-path:.
--logger:"junit;LogFilePath=..\artifacts\{assembly}-test-result.xml;MethodFormat=Class;FailureBodyFormat=Verbose"'
artifacts
:
when
:
always
paths
:
-
./**/*test-result.xml
reports
:
junit
:
-
./**/*test-result.xml
```
## Limitations
Currently, the following tools might not work because their XML formats are unsupported in GitLab.
...
...
doc/ci/variables/README.md
View file @
f698fdbd
...
...
@@ -699,8 +699,8 @@ Running on runner-8a2f473d-project-1796893-concurrent-0 via runner-8a2f473d-mach
++
CI_JOB_ID
=
7046507
++
export
CI_JOB_TOKEN
=
xxxxxxxxxxxxxxxxxxxx
++
CI_JOB_TOKEN
=
xxxxxxxxxxxxxxxxxxxx
++
export
CI_COMMIT_
REF
=
dd648b2e48ce6518303b0bb580b2ee32fadaf045
++
CI_COMMIT_
REF
=
dd648b2e48ce6518303b0bb580b2ee32fadaf045
++
export
CI_COMMIT_
SHA
=
dd648b2e48ce6518303b0bb580b2ee32fadaf045
++
CI_COMMIT_
SHA
=
dd648b2e48ce6518303b0bb580b2ee32fadaf045
++
export
CI_COMMIT_BEFORE_SHA
=
dd648b2e48ce6518303b0bb580b2ee32fadaf045
++
CI_COMMIT_BEFORE_SHA
=
dd648b2e48ce6518303b0bb580b2ee32fadaf045
++
export
CI_COMMIT_REF_NAME
=
master
...
...
doc/ci/yaml/README.md
View file @
f698fdbd
...
...
@@ -1148,6 +1148,8 @@ failure.
1.
`always`
- execute job regardless of the status of jobs from prior stages.
1.
`manual`
- execute job manually (added in GitLab 8.10). Read about
[
manual actions
](
#whenmanual
)
below.
1.
`delayed`
- execute job after a certain period (added in GitLab 11.14).
Read about
[
delayed actions
](
#whendelayed
)
below.
For example:
...
...
doc/topics/autodevops/index.md
View file @
f698fdbd
...
...
@@ -1268,6 +1268,30 @@ Everything behaves the same way, except:
1.
`timed rollout 50%`
1.
`timed rollout 100%`
### Auto DevOps banner
The following Auto DevOps banner will show for maintainers+ on new projects when Auto DevOps is not
enabled:
![
Auto DevOps banner
](
img/autodevops_banner_v12_6.png
)
The banner can be disabled for:
-
A user when they dismiss it themselves.
-
A project by explicitly
[
disabling Auto DevOps
](
#enablingdisabling-auto-devops
)
.
-
An entire GitLab instance:
-
By an administrator running the following in a Rails console:
```ruby
Feature.get(:auto_devops_banner_disabled).enable
```
-
Through the REST API with an admin access token:
```sh
curl --data "value=true" --header "PRIVATE-TOKEN: <personal_access_token>" https://gitlab.example.com/api/v4/features/auto_devops_banner_disabled
```
## Currently supported languages
Note that not all buildpacks support Auto Test yet, as it's a relatively new
...
...
@@ -1340,29 +1364,6 @@ spec:
service account for your project. For help debugging this issue, see
[
Troubleshooting failed deployment jobs
](
../../user/project/clusters/index.md#troubleshooting
)
.
### Auto DevOps banner
The following Auto DevOps banner will show for maintainers+ on new projects when Auto DevOps is not enabled
![
Auto DevOps banner
](
img/autodevops_banner_v12_6.png
)
The banner can be disabled:
-
Per user when they dismiss it.
-
Project-wide by explicitly
[
disabling Auto DevOps
](
#enablingdisabling-auto-devops
)
.
-
By a GitLab administrator for an entire GitLab instance by either:
-
Running the following in a Rails console:
```ruby
Feature.get(:auto_devops_banner_disabled).enable
```
-
Through the REST API with an admin access token:
```sh
curl --data "value=true" --header "PRIVATE-TOKEN: personal_access_token" https://gitlab.example.com/api/v4/features/auto_devops_banner_disabled
```
[
ce-37115
]:
https://gitlab.com/gitlab-org/gitlab-foss/issues/37115
[
docker-in-docker
]:
../../docker/using_docker_build.md#use-docker-in-docker-executor
[
review-app
]:
../../ci/review_apps/index.md
...
...
qa/qa/flow/login.rb
View file @
f698fdbd
...
...
@@ -5,33 +5,33 @@ module QA
module
Login
module_function
def
while_signed_in
(
as:
nil
)
def
while_signed_in
(
as:
nil
,
address: :gitlab
)
Page
::
Main
::
Menu
.
perform
(
&
:sign_out_if_signed_in
)
sign_in
(
as:
as
)
sign_in
(
as:
as
,
address:
address
)
yield
Page
::
Main
::
Menu
.
perform
(
&
:sign_out
)
end
def
while_signed_in_as_admin
while_signed_in
(
as:
Runtime
::
User
.
admin
)
do
def
while_signed_in_as_admin
(
address: :gitlab
)
while_signed_in
(
as:
Runtime
::
User
.
admin
,
address:
address
)
do
yield
end
end
def
sign_in
(
as:
nil
)
Runtime
::
Browser
.
visit
(
:gitlab
,
Page
::
Main
::
Login
)
def
sign_in
(
as:
nil
,
address: :gitlab
)
Runtime
::
Browser
.
visit
(
address
,
Page
::
Main
::
Login
)
Page
::
Main
::
Login
.
perform
{
|
login
|
login
.
sign_in_using_credentials
(
user:
as
)
}
end
def
sign_in_as_admin
sign_in
(
as:
Runtime
::
User
.
admin
)
def
sign_in_as_admin
(
address: :gitlab
)
sign_in
(
as:
Runtime
::
User
.
admin
,
address:
address
)
end
def
sign_in_unless_signed_in
(
as:
nil
)
sign_in
(
as:
as
)
unless
Page
::
Main
::
Menu
.
perform
(
&
:signed_in?
)
def
sign_in_unless_signed_in
(
as:
nil
,
address: :gitlab
)
sign_in
(
as:
as
,
address:
address
)
unless
Page
::
Main
::
Menu
.
perform
(
&
:signed_in?
)
end
end
end
...
...
qa/qa/page/project/job/show.rb
View file @
f698fdbd
...
...
@@ -27,7 +27,7 @@ module QA::Page
wait
(
reload:
false
,
max:
wait
,
interval:
1
)
do
result
=
find_element
(
:build_trace
).
text
!
result
.
empty?
result
.
include?
(
'Job'
)
end
result
...
...
qa/qa/runtime/env.rb
View file @
f698fdbd
...
...
@@ -226,7 +226,7 @@ module QA
end
def
gcloud_region
ENV
.
fetch
(
'GCLOUD_REGION'
)
ENV
[
'GCLOUD_REGION'
]
end
def
gcloud_num_nodes
...
...
qa/qa/service/cluster_provider/gcloud.rb
View file @
f698fdbd
# frozen_string_literal: true
require
'active_support/inflector'
module
QA
module
Service
module
ClusterProvider
...
...
@@ -8,8 +10,22 @@ module QA
find_executable
(
'gcloud'
)
||
raise
(
"You must first install `gcloud` executable to run these tests."
)
end
def
initialize
(
rbac
:)
super
(
rbac:
rbac
)
@attempts
=
0
@available_regions
=
%w(
asia-east1 asia-east2
asia-northeast1 asia-south1
asia-southeast1 australia-southeast1
europe-west1 europe-west2 europe-west4
northamerica-northeast1 southamerica-east1
us-central1 us-east1 us-east4
us-west1 us-west2
)
end
def
set_credentials
(
admin_user
)
master_auth
=
JSON
.
parse
(
`gcloud container clusters describe
#{
cluster_name
}
--region
#{
Runtime
::
Env
.
gcloud_
region
}
--format 'json(masterAuth.username, masterAuth.password)'`
)
master_auth
=
JSON
.
parse
(
`gcloud container clusters describe
#{
cluster_name
}
--region
#{
@
region
}
--format 'json(masterAuth.username, masterAuth.password)'`
)
shell
<<~
CMD
.
tr
(
"
\n
"
,
' '
)
kubectl config set-credentials
#{
admin_user
}
...
...
@@ -58,29 +74,41 @@ module QA
end
def
create_cluster
@region
=
get_region
shell
<<~
CMD
.
tr
(
"
\n
"
,
' '
)
gcloud container clusters
create
#{
cluster_name
}
#{
auth_options
}
--enable-basic-auth
--region
#{
Runtime
::
Env
.
gcloud_
region
}
--region
#{
@
region
}
--disk-size 10GB
--num-nodes
#{
Runtime
::
Env
.
gcloud_num_nodes
}
&& gcloud container clusters
get-credentials
--region
#{
Runtime
::
Env
.
gcloud_
region
}
--region
#{
@
region
}
#{
cluster_name
}
CMD
rescue
QA
::
Service
::
Shellout
::
CommandError
@attempts
+=
1
retry
unless
@attempts
>
1
raise
$!
,
"Tried and failed to provision the cluster
#{
@attempts
}
#{
"time"
.
pluralize
(
@attempts
)
}
."
,
$!
.
backtrace
end
def
delete_cluster
shell
<<~
CMD
.
tr
(
"
\n
"
,
' '
)
gcloud container clusters delete
--region
#{
Runtime
::
Env
.
gcloud_
region
}
--region
#{
@
region
}
#{
cluster_name
}
--quiet --async
CMD
end
def
get_region
Runtime
::
Env
.
gcloud_region
||
@available_regions
.
delete
(
@available_regions
.
sample
)
end
end
end
end
...
...
spec/lib/gitlab/sidekiq_middleware_spec.rb
View file @
f698fdbd
...
...
@@ -25,6 +25,14 @@ describe Gitlab::SidekiqMiddleware do
# 1) not failing
# 2) yielding exactly once
describe
'.server_configurator'
do
around
do
|
example
|
original
=
Sidekiq
::
Testing
.
server_middleware
.
dup
example
.
run
Sidekiq
::
Testing
.
instance_variable_set
:@server_chain
,
original
end
let
(
:middleware_expected_args
)
{
[
a_kind_of
(
worker_class
),
hash_including
({
'args'
=>
job_args
}),
anything
]
}
let
(
:all_sidekiq_middlewares
)
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