User Tools


Differences

This shows you the differences between two versions of the page.

Link to this comparison view

cs:gitlab_ci:start [2019/04/14 17:55]
Sean Kallaher created
cs:gitlab_ci:start [2019/04/15 00:19] (current)
Sean Kallaher
Line 4: Line 4:
 This page is under construction. This page is under construction.
 </​WRAP>​ </​WRAP>​
 +
 +====== gitlab-ci.yml ======
 +
 +The **gitlab-ci.yml** file is responsible for defining how the CI pipeline runs. For details about the syntax of this file, see the [[https://​docs.gitlab.com/​ce/​ci/​yaml/​|Gitlab Wiki page]].
 +
 +
 +
 +====== Terminology ======
 +
 +Job - A single section of CI executed on a runner.
 +
 +Pipeline - A sequence of jobs in parallel or sequence. See the relevant [[https://​docs.gitlab.com/​ce/​ci/​pipelines.html#​introduction|Wiki page]].
 +
 +Runner - A machine that performs the actual execution of a job.