Compare commits

...

1 Commits

Author SHA1 Message Date
henrygd
6a1a98d73f update build constraints to exclude nvml collector on arm64 (#1618) 2026-01-11 20:27:34 -05:00
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