Add integration task

Add missing gate integration task, but use the one from
Common cookbook to make future updates easy.

Change-Id: Iba4a3c74c066ccad01c172f48c4bf73fd4e3fb17
This commit is contained in:
Mark Vanderwiel 2015-10-06 09:44:00 -05:00
parent dac42656c1
commit 33133ab738
1 changed files with 9 additions and 0 deletions

View File

@ -29,3 +29,12 @@ task :clean do
'Berksfile.lock'
]
end
desc "All-in-One Neutron build Infra using Common task"
task :integration do
# Use the common integration task
sh %(wget -nv -t 3 -O Rakefile-Common https://raw.githubusercontent.com/openstack/cookbook-openstack-common/master/Rakefile)
load './Rakefile-Common'
Rake::Task["common_integration"].invoke
end