update build constraints to exclude nvml collector on arm64 (#1618)

This commit is contained in:
henrygd
2026-01-11 20:27:34 -05:00
parent 1f067aad5b
commit 6a1a98d73f
4 changed files with 4 additions and 4 deletions

View File

@@ -1,4 +1,4 @@
//go:build (linux || windows) && (amd64 || arm64)
//go:build (linux || windows) && amd64
package agent

View File

@@ -1,4 +1,4 @@
//go:build linux && (amd64 || arm64)
//go:build linux && amd64
package agent

View File

@@ -1,4 +1,4 @@
//go:build (!linux && !windows) || (!amd64 && !arm64)
//go:build (!linux && !windows) || !amd64
package agent

View File

@@ -1,4 +1,4 @@
//go:build windows && (amd64 || arm64)
//go:build windows && amd64
package agent