-
Notifications
You must be signed in to change notification settings - Fork 25.2k
Add gradle task to build platform-specific distribution only #53682
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Labels
Comments
Pinging @elastic/es-core-infra (:Core/Infra/Build) |
breskeby
added a commit
that referenced
this issue
Apr 30, 2020
This adds the gradle task ':assemblePlatformArchive' that depends on the platform specific distro archive tasks and allows using the same task for building only the archive according to the local platform. This delegates to :distribution:archives:windows-zip:assemble on windows :distribution:archives:linux-tar:assemble on linux :distribution:archives:darwin-tar:assemble on osx Closes #53682
breskeby
added a commit
that referenced
this issue
May 7, 2020
This adds the gradle task ':assemblePlatformArchive' that depends on the platform specific distro archive tasks and allows using the same task for building only the archive according to the local platform. This delegates to :distribution:archives:windows-zip:assemble on windows :distribution:archives:linux-tar:assemble on linux :distribution:archives:darwin-tar:assemble on osx Closes #53682
breskeby
added a commit
that referenced
this issue
May 12, 2020
* Add gradle task 'localDistro' to build platform specific distro * reuse distribution download plugin Closes #53682
breskeby
added a commit
to breskeby/elasticsearch
that referenced
this issue
May 12, 2020
* Add gradle task 'localDistro' to build platform specific distro * reuse distribution download plugin Closes elastic#53682
breskeby
added a commit
to breskeby/elasticsearch
that referenced
this issue
May 12, 2020
* Add gradle task 'localDistro' to build platform specific distro * reuse distribution download plugin Closes elastic#53682
breskeby
added a commit
to breskeby/elasticsearch
that referenced
this issue
May 12, 2020
* Add gradle task 'localDistro' to build platform specific distro * reuse distribution download plugin Closes elastic#53682
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
Currently we have three tasks to build platform-specific distributions:
Or the catch-all
./gradlew assemble
.It would be fantastic to have a single (simple!) task to build the platform specific distribution for whatever platform I am currently on.
So on Linux I'd run:
And it would generate the
.tar.gz
file for me (the same as running the linux-tar assembly above)The text was updated successfully, but these errors were encountered: