Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
67 changes: 0 additions & 67 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -432,25 +432,6 @@ tasks.register("artifactDockerOnly") {
}
}

tasks.register("generatePluginsVersion") {
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Docs have been changing alot, I might be out of sync.
Does this mean we no longer use reference docs workflow? - https://github.com/elastic/logstash-docs/blob/89fac69db8de43a1fca62aa1c4c983455d5986fd/.github/workflows/reference_docs-pre90.yml#L60

description = "Generate plugins version documentation"
dependsOn bootstrap
dependsOn installDefaultGems

doLast {
rake(projectDir, buildDir, 'generate_plugins_version')
}
}

tasks.register("installCore") {
description = "Install core development dependencies"
dependsOn bootstrap

doLast {
rake(projectDir, buildDir, 'test:install-core')
}
}

tasks.register("artifactDockerObservabilitySRE") {
dependsOn bootstrap
dependsOn "copyJdk"
Expand Down Expand Up @@ -497,54 +478,6 @@ tasks.register("assembleTarDistribution") {
}
}

tasks.register("assembleOssTarDistribution") {
dependsOn bootstrap
dependsOn "copyJdk"
inputs.files fileTree("${projectDir}/rakelib")
inputs.files fileTree("${projectDir}/bin")
inputs.files fileTree("${projectDir}/config")
inputs.files fileTree("${projectDir}/lib")
inputs.files fileTree("${projectDir}/logstash-core-plugin-api")
inputs.files fileTree("${projectDir}/logstash-core/lib")
inputs.files fileTree("${projectDir}/logstash-core/src")
doLast {
rake(projectDir, buildDir, 'artifact:archives_oss')
}
}

tasks.register("assembleZipDistribution") {
dependsOn bootstrap
dependsOn "copyJdk"
inputs.files fileTree("${projectDir}/rakelib")
inputs.files fileTree("${projectDir}/bin")
inputs.files fileTree("${projectDir}/config")
inputs.files fileTree("${projectDir}/lib")
inputs.files fileTree("${projectDir}/logstash-core-plugin-api")
inputs.files fileTree("${projectDir}/logstash-core/lib")
inputs.files fileTree("${projectDir}/logstash-core/src")
inputs.files fileTree("${projectDir}/x-pack")
outputs.files file("${buildDir}/logstash-${project.version}.zip")
doLast {
rake(projectDir, buildDir, 'artifact:archives')
}
}

tasks.register("assembleOssZipDistribution") {
dependsOn bootstrap
dependsOn "copyJdk"
inputs.files fileTree("${projectDir}/rakelib")
inputs.files fileTree("${projectDir}/bin")
inputs.files fileTree("${projectDir}/config")
inputs.files fileTree("${projectDir}/lib")
inputs.files fileTree("${projectDir}/logstash-core-plugin-api")
inputs.files fileTree("${projectDir}/logstash-core/lib")
inputs.files fileTree("${projectDir}/logstash-core/src")
outputs.files file("${buildDir}/logstash-${project.version}.zip")
doLast {
rake(projectDir, buildDir, 'artifact:archives_oss')
}
}

project(":logstash-core") {
["rubyTests", "test"].each { tsk ->
tasks.getByPath(":logstash-core:" + tsk).configure {
Expand Down
15 changes: 0 additions & 15 deletions ci/ci_docs.sh

This file was deleted.