forked from pubref/rules_protobuf
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
86 lines (74 loc) · 2.93 KB
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
BAZEL := "bazel"
STARTUP_FLAGS += --output_base="$HOME/.cache/bazel"
STARTUP_FLAGS += --host_jvm_args=-Xmx500m
STARTUP_FLAGS += --host_jvm_args=-Xms500m
STARTUP_FLAGS += --batch
BUILD_FLAGS += --verbose_failures
BUILD_FLAGS += --spawn_strategy=standalone
BUILD_FLAGS += --genrule_strategy=standalone
BUILD_FLAGS += --local_resources=400,2,1.0
BUILD_FLAGS += --worker_verbose
BUILD_FLAGS += --strategy=Javac=worker
BUILD_FLAGS += --strategy=Closure=worker
#BUILD_FLAGS += --experimental_repository_cache="$HOME/.bazel_repository_cache"
TESTFLAGS += $(BUILDFLAGS)
TEST_FLAGS += --test_output=errors
TEST_FLAGS += --test_strategy=standalone
BAZEL_BUILD := $(BAZEL) $(STARTFLAGS) $(BAZELFLAGS) build $(BUILDFLAGS)
BAZEL_TEST := $(BAZEL) $(STARTFLAGS) $(BAZELFLAGS) test $(TEST_FLAGS)
#BAZEL_BUILD := $(BAZEL) build
#BAZEL_TEST := $(BAZEL) test
test_not_working_targets:
$(BAZEL) test \
//examples/helloworld/node:client \
//examples/helloworld/node:server \
//examples/helloworld/csharp/GreeterClient:GreeterClientTest \
test_not_working_in_travis_targets:
$(BAZEL) test \
//examples/helloworld/csharp/GreeterClient:GreeterClientTest \
//examples/helloworld/grpc_gateway:greeter_test \
# Python targets are not working (pip grpcio only compatible with 3.1.x)
test_pip_dependent_targets:
$(BAZEL_TEST) \
//examples/helloworld/python:test_greeter_server \
all: build test
build: external_proto_library_build
$(BAZEL_BUILD) \
//examples/extra_args:person_tar \
//examples/helloworld/node:client \
//examples/helloworld/node:server \
//examples/helloworld/go/client \
//examples/helloworld/go/server \
//examples/helloworld/grpc_gateway:swagger \
//tests/proto_file_in_subdirectory:protolib \
//tests/with_grpc_false:protos \
//tests/with_grpc_false:cpp \
//tests/with_grpc_false:java \
//tests/generated_proto_file:* \
//tests/custom_go_importpath:* \
test: test_pip_dependent_targets
$(BAZEL_TEST) \
//examples/helloworld/cpp:test \
//examples/helloworld/java/org/pubref/rules_protobuf/examples/helloworld/client:netty_test \
//examples/helloworld/java/org/pubref/rules_protobuf/examples/helloworld/server:netty_test \
//examples/wkt/go:wkt_test \
//tests/proto_file_in_subdirectory:test \
//examples/helloworld/closure:greeter_test \
external_proto_library_build:
cd tests/external_proto_library && $(BAZEL_BUILD) :cc_gapi :go_gapi :java_gapi
fmt:
buildifier WORKSPACE
buildifier BUILD
find closure/ -name BUILD | xargs buildifier
find cpp/ -name BUILD | xargs buildifier
find csharp/ -name BUILD | xargs buildifier
find examples/ -name BUILD | xargs buildifier
find go/ -name BUILD | xargs buildifier
find gogo/ -name BUILD | xargs buildifier
find grpc_gateway/ -name BUILD | xargs buildifier
find node/ -name BUILD | xargs buildifier
find objc/ -name BUILD | xargs buildifier
find protobuf/ -name BUILD | xargs buildifier
find python/ -name BUILD | xargs buildifier
find ruby/ -name BUILD | xargs buildifier
find tests/ -name BUILD | xargs buildifier