[BUG] --rpm does not actually build RPM artifact
See original GitHub issueUsing this on branch 1.x does not build .rpm package.
yarn build-platform --rpm --release
https://github.com/opensearch-project/OpenSearch-Dashboards/blob/1.x/src/dev/build/cli.ts
It will build tarball and put it to target folder:
....../OpenSearch-Dashboards/target/opensearch-dashboards-1.3.0-linux-x64.tar.gz
Also, there is no option to build arm64 rpm as well.
Thanks.
Issue Analytics
- State:
- Created 2 years ago
- Comments:6 (6 by maintainers)
Top Results From Across the Web
RPM Packaging Guide
The command rpmbuild creates the actual rpm package. ... For software written in raw interpreted languages, the source code is not built, but...
Read more >How to Build an RPM from Source in One Line without Spec ...
I just type "checkinstall" and the rpm/deb is created (bugged for rpms). No need for spec files. – Bhagwad Jal Park. Sep 28,...
Read more >Incorrect Artifactory-calculated checksums preventing RPM ...
A side effect of this error is that no yum metadata is calculated on the artifact, so the RPM does not show up...
Read more >RPM Packaging Guide Red Hat Enterprise Linux 7
The command rpmbuild creates the actual rpm package. ... Some programming languages, such as bash or Python, do not compile to machine code....
Read more >Store RPM packages in Artifact Registry - Google Cloud
Create a Yum repository, upload a package, and install the package on a VM.
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
@peterzhuamazon
Could run
yarn build-platform --all-platforms
oryarn build
to get rpm/deb package. Result is below (using osd 1.2.0):Currently, we don’t have arm64 rpm. We only have x64 rpm. We could build a single platform using
yarn build-platform --linux-x64
. But now we don’t have a separate cmd for building only deb/rpm package. Need to get them with argument--all-platforms
. If want to limit building only rpm package, would doyarn build-platform --all-platforms --rpm
oryarn build --rpm
.Just talked to the dashboards team member and have these outcomes: (@kavilla @ananzh @tianleh)
aarch64
in the naming:Thanks, Peter