Files
cpp-project-template/third_party/prometheus/pull/tests/integration/BUILD.bazel
tqcq c68893bace
Some checks failed
sm-rpc / build (Debug, aarch64-linux-gnu) (push) Failing after 29s
sm-rpc / build (Debug, arm-linux-gnueabihf) (push) Failing after 16s
sm-rpc / build (Debug, host.gcc) (push) Failing after 11s
sm-rpc / build (Debug, mipsel-linux-gnu) (push) Failing after 12s
sm-rpc / build (Release, aarch64-linux-gnu) (push) Failing after 11s
sm-rpc / build (Release, arm-linux-gnueabihf) (push) Failing after 11s
sm-rpc / build (Release, host.gcc) (push) Failing after 12s
sm-rpc / build (Release, mipsel-linux-gnu) (push) Failing after 16s
feat add spdlog
2025-08-22 18:22:57 +08:00

51 lines
907 B
Python

cc_binary(
name = "sample-server",
srcs = ["sample_server.cc"],
deps = ["//pull"],
)
cc_binary(
name = "sample-server_multi",
srcs = ["sample_server_multi.cc"],
deps = ["//pull"],
)
cc_binary(
name = "sample-server_auth",
srcs = ["sample_server_auth.cc"],
deps = ["//pull"],
)
sh_test(
name = "scrape-test",
size = "small",
srcs = ["scrape.sh"],
data = [
"sample-server",
"scrape.conf",
],
tags = ["manual"],
)
sh_test(
name = "lint-test",
size = "small",
srcs = ["lint.sh"],
data = [
"sample-server",
],
tags = ["manual"],
)
cc_test(
name = "integration_test",
srcs = ["integration_test.cc"],
copts = ["-Iexternal/googletest/include"],
linkstatic = True,
deps = [
"//pull",
"@com_github_curl//:curl",
"@com_google_googletest//:gtest_main",
],
)