Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorFilipa Lacerda <filipa@gitlab.com>2019-06-19 01:09:52 +0300
committerEvan Read <eread@gitlab.com>2019-06-19 01:09:52 +0300
commit7ec8a15ca8e998d6db2622c30f0cecccce889659 (patch)
treeb055c0342272f747a6d75bc8bbc7c70a8508b8d0 /doc
parent57a1c98df060836ec85f9da7383acab71c6602fa (diff)
Adds docs for job collapsible sections
Diffstat (limited to 'doc')
-rw-r--r--doc/ci/img/collapsible_log.pngbin0 -> 174697 bytes
-rw-r--r--doc/ci/pipelines.md14
2 files changed, 14 insertions, 0 deletions
diff --git a/doc/ci/img/collapsible_log.png b/doc/ci/img/collapsible_log.png
new file mode 100644
index 00000000000..2785033b349
--- /dev/null
+++ b/doc/ci/img/collapsible_log.png
Binary files differ
diff --git a/doc/ci/pipelines.md b/doc/ci/pipelines.md
index 1ad3d516df9..5d54fbe519c 100644
--- a/doc/ci/pipelines.md
+++ b/doc/ci/pipelines.md
@@ -139,6 +139,20 @@ The union of A, B, and C is (1, 4) and (6, 7). Therefore, the total running time
(4 - 1) + (7 - 6) => 4
```
+## Expanding and collapsing job log sections
+
+> [Introduced](https://gitlab.com/gitlab-org/gitlab-ce/issues/14664) in GitLab
+> 12.0.
+
+Job logs are divided into sections that can be collapsed or expanded.
+
+In the following example:
+
+- Two sections are expanded and can be collapsed.
+- One section is collapsed and can be expanded.
+
+![Collapsible sections](img/collapsible_log.png)
+
## Configuring pipelines
Pipelines, and their component jobs and stages, are defined in the [`.gitlab-ci.yml`](yaml/README.md) file for each project.