Commit 004fd5cf authored by Michael Tandy's avatar Michael Tandy

Changes based on code review feedback.

parent 14a474d3
......@@ -161,15 +161,7 @@ In the following example:
#### Custom collapsible sections
Build scripts can introduce their own collapsible sections like so:
```text
section_start:1560896352:my_first_section\r\e[0KHeader of the 1st collapsible section
this line should be hidden when collapsed
section_end:1560896353:my_first_section\r\e[0K
```
Where `1560896352` is the unix time the section started or ended; `my_first_section` is a section name; and `\e[0K` is the clear line ANSI escape code. For example, a shell script can demark a collapsible section with:
Build scripts can introduce their own collapsible sections by marking the start and end of the section:
```yaml
job1:
......@@ -179,6 +171,14 @@ job1:
- echo -e "section_end:`date +%s`:my_first_section\r\e[0K"
```
This produces the following output, where `1560896352` is the unix time the section started or ended; `my_first_section` is a section name; and `\e[0K` is the clear line ANSI escape code.
```plaintext
section_start:1560896352:my_first_section\r\e[0KHeader of the 1st collapsible section
this line should be hidden when collapsed
section_end:1560896353:my_first_section\r\e[0K
```
## Configuring pipelines
Pipelines, and their component jobs and stages, are defined in the [`.gitlab-ci.yml`](yaml/README.md) file for each project.
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment