Skip to content

Commit e84a48f

Browse files
authored
Merge pull request Tikam02#144 from waniniraj/master
Adding circleci config file example
2 parents cc61d8b + 2a75d90 commit e84a48f

2 files changed

Lines changed: 18 additions & 0 deletions

File tree

CI-CD/CircleCI/circleci-commands.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,16 @@
1+
# CircleCI Configuration File
2+
3+
The following example calls an Orb named hello-build that exists in the certified circleci namespace.
4+
```
5+
version: 2.1
6+
orbs:
7+
hello: circleci/hello-build@0.0.5
8+
workflows:
9+
"Hello Workflow":
10+
jobs:
11+
- hello/hello-build
12+
```
13+
114
# CircleCI Commands
215

316
The CircleCI CLI is a command line interface that leverages many of CircleCI’s advanced and powerful tools from the comfort of your terminal.

CI-CD/CircleCI/circleci-concepts.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,3 +47,8 @@ A command definition defines a sequence of steps as a map to be executed in a jo
4747

4848
# Executors :
4949
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.
50+
51+
# Pipeline :
52+
A CircleCI pipeline is the full set of processes you run when you trigger work on your projects. Pipelines encompass your workflows, which in turn coordinate your jobs.
53+
54+

0 commit comments

Comments
 (0)