mirror of
https://github.com/edgelesssys/constellation.git
synced 2024-12-11 17:04:22 -05:00
5ce55e3449
The package holds code shared between SNP-based attestation implementations on AWS and Azure .
16 lines
399 B
Python
16 lines
399 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/snp/testdata",
|
|
visibility = ["//:__subpackages__"],
|
|
)
|