From 33133ab738481d40315cacc3e42ea6d49e8a5ce5 Mon Sep 17 00:00:00 2001 From: Mark Vanderwiel Date: Tue, 6 Oct 2015 09:44:00 -0500 Subject: [PATCH] Add integration task Add missing gate integration task, but use the one from Common cookbook to make future updates easy. Change-Id: Iba4a3c74c066ccad01c172f48c4bf73fd4e3fb17 --- Rakefile | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/Rakefile b/Rakefile index 0122ee0f..676e7d46 100644 --- a/Rakefile +++ b/Rakefile @@ -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 +