mirror of
https://github.com/edgelesssys/constellation.git
synced 2024-10-01 01:36:09 -04:00
24 lines
683 B
Python
24 lines
683 B
Python
|
load("@io_bazel_rules_go//go:def.bzl", "go_library")
|
||
|
load("//bazel/go:go_test.bzl", "go_test")
|
||
|
|
||
|
go_library(
|
||
|
name = "executor",
|
||
|
srcs = ["executor.go"],
|
||
|
importpath = "github.com/edgelesssys/constellation/v2/operators/constellation-node-operator/v2/internal/executor",
|
||
|
visibility = ["//operators/constellation-node-operator:__subpackages__"],
|
||
|
deps = [
|
||
|
"@io_k8s_client_go//util/workqueue",
|
||
|
"@io_k8s_sigs_controller_runtime//pkg/log",
|
||
|
],
|
||
|
)
|
||
|
|
||
|
go_test(
|
||
|
name = "executor_test",
|
||
|
srcs = ["executor_test.go"],
|
||
|
embed = [":executor"],
|
||
|
deps = [
|
||
|
"@com_github_stretchr_testify//assert",
|
||
|
"@org_uber_go_goleak//:goleak",
|
||
|
],
|
||
|
)
|