mirror of
https://github.com/edgelesssys/constellation.git
synced 2024-10-01 01:36:09 -04:00
34 lines
603 B
Python
34 lines
603 B
Python
|
load("//bazel/sh:def.bzl", "sh_template")
|
||
|
|
||
|
filegroup(
|
||
|
name = "dependencies",
|
||
|
srcs = [
|
||
|
".terraform.lock.hcl",
|
||
|
"cloud-init.yaml",
|
||
|
"main.tf",
|
||
|
"output.tf",
|
||
|
"test-remote.sh",
|
||
|
],
|
||
|
)
|
||
|
|
||
|
sh_library(
|
||
|
name = "dependencies_lib",
|
||
|
srcs = [
|
||
|
":dependencies",
|
||
|
],
|
||
|
)
|
||
|
|
||
|
sh_template(
|
||
|
name = "remote_test",
|
||
|
data = [
|
||
|
"//cli:cli_enterprise_linux_amd64",
|
||
|
],
|
||
|
substitutions = {
|
||
|
"@@PATH_CLI@@": "$(rootpath //cli:cli_enterprise_linux_amd64)",
|
||
|
},
|
||
|
template = "main.sh.in",
|
||
|
deps = [
|
||
|
":dependencies_lib",
|
||
|
],
|
||
|
)
|