mirror of
https://github.com/netbirdio/gvisor.git
synced 2026-05-22 17:12:49 -07:00
64723470a6
PiperOrigin-RevId: 308901116
30 lines
545 B
Python
30 lines
545 B
Python
package(licenses = ["notice"])
|
|
|
|
config_setting(
|
|
name = "gcloud_rule",
|
|
values = {
|
|
"define": "gcloud=off",
|
|
},
|
|
)
|
|
|
|
py_binary(
|
|
name = "benchmarks",
|
|
testonly = 1,
|
|
srcs = ["run.py"],
|
|
data = select({
|
|
":gcloud_rule": [],
|
|
"//conditions:default": [
|
|
"//tools/vm:ubuntu1604",
|
|
"//tools/vm:zone",
|
|
],
|
|
}),
|
|
main = "run.py",
|
|
python_version = "PY3",
|
|
srcs_version = "PY3",
|
|
tags = [
|
|
"local",
|
|
"manual",
|
|
],
|
|
deps = ["//benchmarks/runner"],
|
|
)
|