Skip to content

Commit f413867

Browse files
committed
chore: remove old no_{oci,containerd}_worker build tags
Signed-off-by: Justin Chadwell <me@jedevc.com>
1 parent 687091b commit f413867

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

cmd/buildkitd/main_containerd_worker.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
//go:build (linux && !no_containerd_worker) || (windows && !no_containerd_worker)
2-
// +build linux,!no_containerd_worker windows,!no_containerd_worker
1+
//go:build linux || windows
2+
// +build linux windows
33

44
package main
55

cmd/buildkitd/main_oci_worker.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
//go:build linux && !no_oci_worker
2-
// +build linux,!no_oci_worker
1+
//go:build linux
2+
// +build linux
33

44
package main
55

worker/containerd/containerd_test.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
//go:build linux && !no_containerd_worker
2-
// +build linux,!no_containerd_worker
1+
//go:build linux
2+
// +build linux
33

44
package containerd
55

worker/runc/runc_test.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
//go:build linux && !no_runc_worker
2-
// +build linux,!no_runc_worker
1+
//go:build linux
2+
// +build linux
33

44
package runc
55

0 commit comments

Comments
 (0)