remove all trace of install all plugins in the code and in the build scripts

Fixes #8281
This commit is contained in:
Pier-Hugues Pellerin 2017-09-15 13:59:58 -04:00
parent ceb6c53ace
commit 0b7cb4a599
6 changed files with 6 additions and 35 deletions

View file

@ -29,13 +29,7 @@ IF "%SELECTEDTESTSUITE%"=="core-fail-fast" (
%RAKEPATH% test:install-core
%RAKEPATH% test:core-fail-fast
) ELSE (
IF "%SELECTEDTESTSUITE%"=="all" (
echo "Running all plugins tests"
%RAKEPATH% test:install-all
%RAKEPATH% test:plugins
) ELSE (
echo "Running core tests"
%RAKEPATH% test:install-core
%RAKEPATH% test:core
)
echo "Running core tests"
%RAKEPATH% test:install-core
%RAKEPATH% test:core
)

View file

@ -29,13 +29,7 @@ IF "%SELECTEDTESTSUITE%"=="core-fail-fast" (
%RAKEPATH% test:install-core
%RAKEPATH% test:core-fail-fast
) ELSE (
IF "%SELECTEDTESTSUITE%"=="all" (
echo "Running all plugins tests"
%RAKEPATH% test:install-all
%RAKEPATH% test:plugins
) ELSE (
echo "Running core tests"
%RAKEPATH% test:install-core
%RAKEPATH% test:core
)
echo "Running core tests"
%RAKEPATH% test:install-core
%RAKEPATH% test:core
)

View file

@ -17,12 +17,6 @@ if [[ $SELECTED_TEST_SUITE == $"core-fail-fast" ]]; then
rake test:install-core
echo "Running test:core-fail-fast"
rake test:core-fail-fast
elif [[ $SELECTED_TEST_SUITE == $"all" ]]; then
echo "Running all plugins tests"
echo "Running test:install-all" # Install all plugins in this logstash instance, including development dependencies
rake test:install-all
echo "Running test:plugins" # Run all plugins tests
rake test:plugins
elif [[ $SELECTED_TEST_SUITE == $"java" ]]; then
echo "Running Java unit tests"
echo "Running test:core-java"

View file

@ -197,12 +197,6 @@ namespace "artifact" do
end
end
task "prepare-all" do
if ENV['SKIP_PREPARE'] != "1"
["bootstrap", "plugin:install-all", "artifact:clean-bundle-config"].each {|task| Rake::Task[task].invoke }
end
end
def build_tar(tar_suffix = nil)
require "zlib"
require "archive/tar/minitar"

View file

@ -7,7 +7,4 @@ namespace "package" do
desc "Build a package with the default plugins, including dependencies, to be installed offline"
task "plugins-default" => ["test:install-default", "bundle"]
desc "Build a package with all the plugins, including dependencies, to be installed offline"
task "plugins-all" => ["test:install-all", "bundle"]
end

View file

@ -62,8 +62,6 @@ namespace "test" do
task "install-default" => ["bootstrap", "plugin:install-default", "plugin:install-development-dependencies"]
task "install-all" => ["bootstrap", "plugin:install-all", "plugin:install-development-dependencies"]
task "install-vendor-plugins" => ["bootstrap", "plugin:install-vendor", "plugin:install-development-dependencies"]
task "install-jar-dependencies-plugins" => ["bootstrap", "plugin:install-jar-dependencies", "plugin:install-development-dependencies"]