forked from knative/serving
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Update deps Ran hack/update-deps.sh on master. * Pull in the latest k8schain This version removes the ggcr master constraint which made it impossible to also constrain ggcr to a non-master revision in this repo without an override.
- Loading branch information
1 parent
93405a2
commit a802e70
Showing
6 changed files
with
34 additions
and
7 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,4 @@ | ||
exports_files(["boilerplate.go.txt", "boilerplate.sh.txt"]) | ||
exports_files([ | ||
"boilerplate.go.txt", | ||
"boilerplate.sh.txt", | ||
]) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
load("@io_bazel_rules_go//go:def.bzl", "go_binary", "go_library") | ||
|
||
go_library( | ||
name = "go_default_library", | ||
srcs = ["main.go"], | ||
importpath = "github.com/elafros/elafros/test/conformance/test_images_go/pizzaplanetv1", | ||
visibility = ["//visibility:private"], | ||
) | ||
|
||
go_binary( | ||
name = "pizzaplanetv1", | ||
embed = [":go_default_library"], | ||
visibility = ["//visibility:public"], | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
load("@io_bazel_rules_go//go:def.bzl", "go_binary", "go_library") | ||
|
||
go_library( | ||
name = "go_default_library", | ||
srcs = ["main.go"], | ||
importpath = "github.com/elafros/elafros/test/conformance/test_images_go/pizzaplanetv2", | ||
visibility = ["//visibility:private"], | ||
) | ||
|
||
go_binary( | ||
name = "pizzaplanetv2", | ||
embed = [":go_default_library"], | ||
visibility = ["//visibility:public"], | ||
) |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.