tinyusb/.circleci/config.yml

34 lines
1.4 KiB
YAML
Raw Normal View History

2024-05-10 13:00:19 +07:00
# Use the latest 2.1 version of CircleCI pipeline process engine.
# See: https://circleci.com/docs/configuration-reference
2024-05-10 12:44:54 +07:00
version: 2.1
2024-05-10 13:00:19 +07:00
# Define a job to be invoked later in a workflow.
# See: https://circleci.com/docs/jobs-steps/#jobs-overview & https://circleci.com/docs/configuration-reference/#jobs
2024-05-10 12:44:54 +07:00
jobs:
2024-05-10 13:00:19 +07:00
say-hello:
# Specify the execution environment. You can specify an image from Docker Hub or use one of our convenience images from CircleCI's Developer Hub.
# See: https://circleci.com/docs/executor-intro/ & https://circleci.com/docs/configuration-reference/#executor-job
2024-05-10 12:44:54 +07:00
docker:
2024-05-10 13:00:19 +07:00
# Specify the version you desire here
# See: https://circleci.com/developer/images/image/cimg/base
- image: cimg/base:current
resource_class: small
2024-05-10 13:00:19 +07:00
# Add steps to the job
# See: https://circleci.com/docs/jobs-steps/#steps-overview & https://circleci.com/docs/configuration-reference/#steps
2024-05-10 12:44:54 +07:00
steps:
2024-05-10 13:00:19 +07:00
# Checkout the code as the first step.
- checkout
2024-05-10 12:44:54 +07:00
- run:
2024-05-10 13:00:19 +07:00
name: "Say hello"
command: "echo Hello, World!"
# Orchestrate jobs using workflows
# See: https://circleci.com/docs/workflows/ & https://circleci.com/docs/configuration-reference/#workflows
2024-05-10 12:44:54 +07:00
workflows:
2024-05-10 13:00:19 +07:00
say-hello-workflow: # This is the name of the workflow, feel free to change it to better match your workflow.
# Inside the workflow, you define the jobs you want to run.
2024-05-10 12:44:54 +07:00
jobs:
2024-05-10 17:53:26 +07:00
- say-hello