This orb starter kit will help you write your own orb.
Orbs are reusable commands, executors, and jobs (as well as usage examples)—snippets of CircleCI configuration—that can be shared across teams and projects. See CircleCI Orbs, Explore Orbs, Creating Orbs, and Using Orbs for further information.
In this Orb-Starter-Kit you will find an automated setup to create a development pipeline to build your orb automatically. Once setup is complete you will have a functioning hello-world orb that is automatically build and released on each commit. Commits to the "Master" branch will trigger production Orb releases and other branches will create development versions of your Orb for testing.
Before getting started you will need the the following things:
- A CircleCI account.
- Git installed and configured locally.
- A CircleCI Personal API Token
- A GitHub Personal Access Token
- Download (don't fork/clone!) this repository and unzip it
- Rename the folder to the name you would like to give your orb
- Run the
orb-init.sh
script to begin.
Once the orb is complete, you will have two new Green workflows in your CircleCI account. The first one for the initial setup and the second one will have produced a development version of your orb which contains a sample Command, Executor, and Job.
You may now simply modify these examples and add your own. Any new commit to the repo automatically trigger a development pipeline
The Orb CI/CD pipeline begins! Your Orb will go through the lint-pack_validate_publish-dev
workflow. The code will first be linted, then passed to the "pack" job which will take your multiple partial yaml files and condense them into a single Orb.yml file, lastly, if specified within the config.yml
, and defined integration tests will also be ran.
Based on the branch you push to, the workflow will automatically create a development version of your orb for any branch except for "Master" which will create a production release which will be automatically incremented.
This orb provides a basic directory/file structure for a decomposed orb (where commands, jobs, examples, and executors each live in their own YAML file). Create each of your commands, jobs, examples, and executors within the requisite folders in the src
directory.
Following are some resources to help you build and test your orb:
- Tips for writing your first orb
- How to make an easy and valuable open source contribution with CircleCI orbs
- Creating automated build, test, and deploy workflows for orbs: part 1, part 2
Explaination of all permissions required for the script.
- sudo - The CircleCI CLI Update command will request sudo permissions to update.
- GitHub personal access token - Used to automatically create the repository for you. Will require full "repo" access.
- SSH keys - A public key is added to the repo on GitHub, CircleCI will hold the private key. This is used to automatically create tagged commits from within the Workflow to enable integration testing.
Preview "Hello-World" Orb produced by this repo by default.
commands:
greet:
description: |
Replace this text with a description for this command. # What will this command do? # Descriptions should be short, simple, and clear.
parameters:
greeting:
default: Hello
description: Select a proper greeting
type: string
steps:
- run:
command: echo << parameters.greeting >> world
name: Hello World
description: |
Sample orb description # What will your orb allow users to do? # Descriptions should be short, simple, and clear.
examples:
example:
description: |
Sample example description. # What will this example document? # Descriptions should be short, simple, and clear.
usage:
jobs:
build:
machine: true
steps:
- foo/hello:
username: Anna
orbs:
foo: bar/[email protected]
version: 2.1
executors:
default:
description: |
This is a sample executor using Docker and Node. # What is this executor? # Descriptions should be short, simple, and clear.
docker:
- image: circleci/node:<<parameters.tag>>
parameters:
tag:
default: latest
description: |
Pick a specific circleci/node image variant: https://hub.docker.com/r/circleci/node/tags
type: string
jobs:
hello:
description: |
# What will this job do? # Descriptions should be short, simple, and clear.
executor: default
parameters:
greeting:
default: Hello
description: Select a proper greeting
type: string
steps:
- greet:
greeting: << parameters.greeting >>
orbs:
hello: circleci/[email protected]
version: 2.1