8000 GitHub - AjaiDubey/orbs: The source code for orbs published by Sous-Chefs https://circleci.com/orbs/registry
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

AjaiDubey/orbs

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

52 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

CircleCI Orb For Sous-chefs

This repository contains the Sous-Chefs orb

View Source

circleci orb source sous-chefs/kitchen@2

Usage

Include the orb and give it a namespace, in this case kitchen

Then use the orb in a workflow.

Orbs can be used with semantic version pins - see CircleCI documentation

Version 1.1.2

---
lint_and_unit: &lint_and_unit
  - delivery
  - danger
  - lint-yaml
  - lint-markdown

version: 2.1
orbs:
  kitchen: sous-chefs/kitchen@2

workflows:
  kitchen:
    jobs:
      # Lint and Unit Test
      - kitchen/yamllint:
          name: lint-yaml
      - kitchen/mdlint:
          name: lint-markdown
      - kitchen/danger:
          name: danger
          context: Danger
      - kitchen/delivery:
          name: delivery

      # Run multiple platforms at once
      - kitchen/dokken-single:
          name: default
          suite: default
          requires:
            *lint_and_unit

      # Run a single platform
      - kitchen/dokken-single:
          suite: default-centos-7
          name: default-centos-7
          requires:
            *lint_and_unit

About

The source code for orbs published by Sous-Chefs https://circleci.com/orbs/registry

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Ruby 84.8%
  • Shell 15.2%
0