Skip to content

Latest commit

 

History

History
18 lines (16 loc) · 496 Bytes

node.md

File metadata and controls

18 lines (16 loc) · 496 Bytes

In CircleCI, the hosts/executors on which a pipeline is executed, is called a runner.
You reference a runner on a job in the file .circleci/config.yml like this:

version: 2.1
workflows:
  testing:
    jobs:
      - runner
jobs:
  runner:
    machine: true
    resource_class: your-namespace/your-resource
    steps:
      - run: echo "Hi I'm on Runners!"

The above example is taken from CircleCI docs