marcosvm / orbs

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

Home Page:https://supermarket.chef.io/cookbooks/orbs

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

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

https://supermarket.chef.io/cookbooks/orbs


Languages

Language:Ruby 84.8%Language:Shell 15.2%