Skip to content

Commit

Permalink
Merge pull request kubernetes#18574 from MushuEE/feature/html_report
Browse files Browse the repository at this point in the history
Html report for Prow Job status
  • Loading branch information
k8s-ci-robot authored Aug 15, 2020
2 parents d116b94 + fe17afa commit f7c0df9
Show file tree
Hide file tree
Showing 7 changed files with 532 additions and 0 deletions.
1 change: 1 addition & 0 deletions experiment/BUILD.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ filegroup(
"//experiment/image-bumper:all-srcs",
"//experiment/logviewer/gcsreader:all-srcs",
"//experiment/manual-trigger:all-srcs",
"//experiment/prowjob-report:all-srcs",
"//experiment/resultstore:all-srcs",
"//experiment/service-account-creator:all-srcs",
"//experiment/slack-oncall-updater:all-srcs",
Expand Down
33 changes: 33 additions & 0 deletions experiment/prowjob-report/BUILD.bazel
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
load("@io_bazel_rules_go//go:def.bzl", "go_binary", "go_library")

go_library(
name = "go_default_library",
srcs = ["main.go"],
importpath = "k8s.io/test-infra/experiment/prowjob-report",
visibility = ["//visibility:private"],
deps = [
"//prow/config:go_default_library",
"@io_k8s_api//core/v1:go_default_library",
"@io_k8s_apimachinery//pkg/api/resource:go_default_library",
],
)

go_binary(
name = "prowjob-report",
embed = [":go_default_library"],
visibility = ["//visibility:public"],
)

filegroup(
name = "package-srcs",
srcs = glob(["**"]),
tags = ["automanaged"],
visibility = ["//visibility:private"],
)

filegroup(
name = "all-srcs",
srcs = [":package-srcs"],
tags = ["automanaged"],
visibility = ["//visibility:public"],
)
Loading

0 comments on commit f7c0df9

Please sign in to comment.