inspec/.delivery/build-cookbook/recipes/prepare.rb
Dominik Richter 416499cd64 add delivery unit + lint tests
Signed-off-by: Dominik Richter <dominik.richter@gmail.com>
2015-09-26 12:24:58 +02:00

21 lines
498 B
Ruby

#
# Cookbook Name:: build-cookbook
# Recipe:: prepare
#
# Copyright (c) 2015 Chef Software Inc., All Rights Reserved.
# Author:: Dominik Richter
repo_dir = node['delivery_builder']['repo']
cache_dir = File.join(repo_dir, '.cache')
directory cache_dir do
owner node['delivery_builder']['build_user']
mode '0755'
end
execute 'bundle install' do
command 'bundle install --without=integration --without=tools --path='+cache_dir
cwd repo_dir
user node['delivery_builder']['build_user']
end