mirror of
https://github.com/edgelesssys/constellation.git
synced 2024-12-12 09:24:24 -05:00
16 lines
405 B
Python
16 lines
405 B
Python
|
load("@io_bazel_rules_go//go:def.bzl", "go_library")
|
||
|
|
||
|
go_library(
|
||
|
name = "testdata",
|
||
|
srcs = ["testdata.go"],
|
||
|
embedsrcs = [
|
||
|
"attestation.bin",
|
||
|
"vcek.cert",
|
||
|
"certchain.pem",
|
||
|
"runtimedata.bin",
|
||
|
"vcek.pem",
|
||
|
],
|
||
|
importpath = "github.com/edgelesssys/constellation/v2/internal/attestation/azure/snp/testdata",
|
||
|
visibility = ["//:__subpackages__"],
|
||
|
)
|