Sha256: 7e89105b37d51fe60c04eac82d29d5e87e3fa23ae838fc8c4aa97cd9ab45802f

Contents?: true

Size: 1.27 KB

Versions: 8

Compression:

Stored size: 1.27 KB

Contents

# Delivery for Local Phases Execution
#
# This file allows you to execute test phases locally on a workstation or
# in a CI pipeline. The delivery-cli will read this file and execute the
# command(s) that are configured for each phase. You can customize them
# by just modifying the phase key on this file.
#
# By default these phases are configured for Cookbook Workflow only
#

[local_phases]
<% if @specs %>
unit = "chef exec rspec spec/"
<% else %>
unit = "echo skipping unit phase."
<% end %>
lint = "chef exec cookstyle"
# foodcritic has been deprecated in favor of cookstyle so we skip the syntax
# phase now.
syntax = "echo skipping syntax phase. Use lint phase instead."
provision = "chef exec kitchen create"
deploy = "chef exec kitchen converge"
smoke = "chef exec kitchen verify"
# The functional phase is optional, you can define it by uncommenting
# the line below and running the command: `delivery local functional`
# functional = ""
cleanup = "chef exec kitchen destroy"

# Remote project.toml file
#
# Instead of the local phases above, you may specify a remote URI location for
# the `project.toml` file. This is useful for teams that wish to centrally
# manage the behavior of the `delivery local` command across many different
# projects.
#
# remote_file = "https://url/project.toml"

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
chef-cli-5.5.0 lib/chef-cli/skeletons/code_generator/templates/default/delivery-project.toml.erb
chef-cli-5.4.2 lib/chef-cli/skeletons/code_generator/templates/default/delivery-project.toml.erb
chef-cli-5.4.1 lib/chef-cli/skeletons/code_generator/templates/default/delivery-project.toml.erb
chef-cli-5.3.1 lib/chef-cli/skeletons/code_generator/templates/default/delivery-project.toml.erb
chef-cli-5.3.0 lib/chef-cli/skeletons/code_generator/templates/default/delivery-project.toml.erb
chef-cli-5.2.0 lib/chef-cli/skeletons/code_generator/templates/default/delivery-project.toml.erb
chef-cli-5.1.0 lib/chef-cli/skeletons/code_generator/templates/default/delivery-project.toml.erb
chef-cli-5.0.1 lib/chef-cli/skeletons/code_generator/templates/default/delivery-project.toml.erb