filodb / FiloDB

Distributed Prometheus time series database
Apache License 2.0
1.43k stars 225 forks source link

fix(core): Fix Rust publishing of x86_64 binaries #1857

Closed rfairfax closed 3 weeks ago

rfairfax commented 3 weeks ago

Rust names the x86-64 architecture as x86_64. Java names it as amd64. This mismatch causes errors during library load as they can't agree on the file path.

The fix is to normalize the Rust name into the Java name, so it can locate the output binaries.

Pull Request checklist