Add generated delivery build cookbook

This commit is contained in:
2019-05-27 01:21:36 -04:00
parent 7b6840ec93
commit fc904f555c
21 changed files with 367 additions and 0 deletions

View File

@ -0,0 +1,2 @@
name 'test'
version '0.1.0'

View File

@ -0,0 +1,9 @@
# frozen_string_literal: true
%w(unit lint syntax).each do |phase|
# TODO: This works on Linux/Unix. Not Windows.
execute "HOME=/home/vagrant delivery job verify #{phase} --server localhost --ent test --org kitchen" do
cwd '/tmp/repo-data'
user 'vagrant'
environment('GIT_DISCOVERY_ACROSS_FILESYSTEM' => '1')
end
end