You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CI-CD/CircleCI/circleci-concepts.md
+6Lines changed: 6 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -41,3 +41,9 @@ Artifacts are used for longer-term storage of the outputs of your pipelines. Art
41
41
# CircleCI Config :
42
42
CircleCI believes in configuration as code. As a result, the entire delivery process from build to deploy is orchestrated through a single file called config.yml.
43
43
The config.yml file is located in a folder called .circleci at the top of your project. CircleCI uses the YAML syntax for config.
44
+
45
+
# Commands :
46
+
A command definition defines a sequence of steps as a map to be executed in a job, enabling you to reuse a single command definition across multiple jobs.
47
+
48
+
# Executors :
49
+
Executors define the environment in which the steps of a job will be run, allowing you to reuse a single executor definition across multiple jobs.
0 commit comments