You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In containerd/containerd#7033 (comment), I suggested a constraint of //go:build (linux || windows || darwin) && !no_cri. In the old syntax, that expands to:
// +build linux windows darwin
// +build !no_cri
When used together for compatibility, this results in a three-line build constraint section prior to the file header:
//go:build (linux || windows || darwin) && !no_cri
// +build linux windows darwin
// +build !no_cri
In containerd/containerd#7033 (comment), I suggested a constraint of
//go:build (linux || windows || darwin) && !no_cri
. In the old syntax, that expands to:When used together for compatibility, this results in a three-line build constraint section prior to the file header:
This causes the file headers check to fail:
(https://github.com/containerd/containerd/runs/6817382535)
The text was updated successfully, but these errors were encountered: