fix: use target arch amd64 (#2027)

This commit is contained in:
Srikanth Chekuri 2023-01-12 11:27:48 +05:30 committed by GitHub
parent b87f3bdb50
commit 7b1e2c8b98
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 1 additions and 1 deletions

View File

@ -11,7 +11,7 @@ import (
)
// NOTE: executable must be built with target OS and architecture set to linux/amd64
// env GOOS=linux GOARCH=arm64 go build -o histogramQuantile histogramQuantile.go
// env GOOS=linux GOARCH=amd64 go build -o histogramQuantile histogramQuantile.go
// The following code is adapted from the following source:
// https://github.com/prometheus/prometheus/blob/main/promql/quantile.go