mirror of
https://github.com/elastic/logstash.git
synced 2025-04-24 06:37:19 -04:00
remove all trace of install all plugins in the code and in the build scripts
Fixes #8281
This commit is contained in:
parent
ceb6c53ace
commit
0b7cb4a599
6 changed files with 6 additions and 35 deletions
|
@ -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
|
||||
)
|
||||
|
|
|
@ -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
|
||||
)
|
||||
|
|
|
@ -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"
|
||||
|
|
|
@ -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"
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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"]
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue