Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
K
k3s
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Jacklull
k3s
Commits
bdaad658
Commit
bdaad658
authored
Jan 06, 2017
by
Kubernetes Submit Queue
Committed by
GitHub
Jan 06, 2017
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #39552 from mikedanese/make-bzl
Automatic merge from submit-queue (batch tested with PRs 39544, 39552, 39553) make help should be bazel aware
parents
8a4f367c
26c1cb82
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
24 additions
and
0 deletions
+24
-0
Makefile
Makefile
+24
-0
No files found.
Makefile
View file @
bdaad658
...
...
@@ -471,8 +471,32 @@ endif
# Non-dockerized bazel rules.
.PHONY
:
bazel-build bazel-test
ifeq
($(PRINT_HELP),y)
define
BAZEL_BUILD_HELP_INFO
# Build with bazel
#
# Example:
# make bazel-build
endef
bazel-build
:
@
echo
"
$$
BAZEL_BUILD_HELP_INFO"
else
bazel-build
:
bazel build //cmd/... //pkg/... //federation/... //plugin/... //build/... //examples/... //test/... //third_party/...
endif
ifeq
($(PRINT_HELP),y)
bazel-test
:
define
BAZEL_TEST_HELP_INFO
# Test with bazel
#
# Example:
# make bazel-test
endef
@echo
"$$BAZEL_TEST_HELP_INFO"
else
bazel-test
:
bazel
test
--test_output
=
errors //cmd/... //pkg/... //federation/... //plugin/... //build/... //third_party/... //hack/...
endif
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment