Skip to content
Snippets Groups Projects

Add more information for pre and post

Merged Evan Read requested to merge eread/more-pre-post-content into master
All threads resolved!
1 file
+ 23
0
Compare changes
  • Side-by-side
  • Inline
+ 23
0
@@ -329,6 +329,29 @@ The following stages are available to every pipeline:
User-defined stages are executed after `.pre` and before `.post`.
The order of `.pre` and `.post` can not be changed, even if defined out of order in `.gitlab-ci.yml`.
For example, the following are equivalent configuration:
- Configured in order:
```yml
stages:
- .pre
- a
- b
- .post
```
- Configured out of order:
```yml
stages:
- a
- .pre
- b
- .post
```
### `stage`
`stage` is defined per-job and relies on [`stages`](#stages) which is defined
Loading