File tree Expand file tree Collapse file tree 1 file changed +31
-0
lines changed Expand file tree Collapse file tree 1 file changed +31
-0
lines changed Original file line number Diff line number Diff line change 1+ # Use the latest 2.1 version of CircleCI pipeline process engine.
2+ # See: https://circleci.com/docs/reference/configuration-reference
3+ version : 2.1
4+
5+ # Define a job to be invoked later in a workflow.
6+ # See: https://circleci.com/docs/guides/orchestrate/jobs-steps/#jobs-overview & https://circleci.com/docs/reference/configuration-reference/#jobs
7+ jobs :
8+ say-hello :
9+ # Specify the execution environment. You can specify an image from Docker Hub or use one of our convenience images from CircleCI's Developer Hub.
10+ # See: https://circleci.com/docs/guides/execution-managed/executor-intro/ & https://circleci.com/docs/reference/configuration-reference/#executor-job
11+ docker :
12+ # Specify the version you desire here
13+ # See: https://circleci.com/developer/images/image/cimg/base
14+ - image : cimg/base:current
15+
16+ # Add steps to the job
17+ # See: https://circleci.com/docs/guides/orchestrate/jobs-steps/#steps-overview & https://circleci.com/docs/reference/configuration-reference/#steps
18+ steps :
19+ # Checkout the code as the first step.
20+ - checkout
21+ - run :
22+ name : " Say hello"
23+ command : " echo Hello, World!"
24+
25+ # Orchestrate jobs using workflows
26+ # See: https://circleci.com/docs/guides/orchestrate/workflows/ & https://circleci.com/docs/reference/configuration-reference/#workflows
27+ workflows :
28+ say-hello-workflow : # This is the name of the workflow, feel free to change it to better match your workflow.
29+ # Inside the workflow, you define the jobs you want to run.
30+ jobs :
31+ - say-hello
You can’t perform that action at this time.
0 commit comments