-
Notifications
You must be signed in to change notification settings - Fork 81
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
Add workflow to publish linux x86_64 #22
Conversation
.github/workflows/cd.yml
Outdated
run: | | ||
mkdir -p prepare-install; | ||
mv logstash-output-opensearch-*.gem prepare-install/logstash-output-opensearch.gem; | ||
wget --no-verbose https://artifacts.elastic.co/downloads/logstash/logstash-oss-7.13.2-linux-x86_64.tar.gz -P prepare-install/; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
can logstash oss version be made dynamic to download?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ack
.github/workflows/cd.yml
Outdated
@@ -0,0 +1,40 @@ | |||
name: Publish logstash-oss-with-opensearch-plugin |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Nit: Could cd.yml be renamed to CD.yml? It seems that is the convention for plugins.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ack
.github/workflows/cd.yml
Outdated
uses: actions/upload-artifact@v2 | ||
with: | ||
name: "logstash-oss-with-opensearch-plugin-7.13.2-linux-x86_64.tar.gz" | ||
path: prepare-install/logstash-oss-with-opensearch-plugin-7.13.2-linux-x86_64.tar.gz |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
For discussion, should the artifact use x64
as this is what we use for OpenSearch artifacts: https://opensearch.org/downloads.html or do we want to keep consistent with logstash convention of x86_64
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I renamed to our naming convention
678f383
to
a57dd5a
Compare
Download logstash, build plugin, install plugin and publish logstash-oss-7.13.2-linux-x64.tar.gz Signed-off-by: Vijayan Balasubramanian <balasvij@amazon.com>
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM! Thanks
Signed-off-by: Vijayan Balasubramanian balasvij@amazon.com
Description
Download logstash, build plugin, install plugin and
publish logstash-oss-7.13.2-linux-x86_64.tar.gz
Issues Resolved
[List any issues this PR will resolve]
Check List
By submitting this pull request, I confirm that my contribution is made under the terms of the Apache 2.0 license.
For more information on following Developer Certificate of Origin and signing off your commits, please check here.