-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
* fix .env with newer docker-compose * fix basic auth integration test * protoc test fix with newer Python and protobuf versions
- Loading branch information
There are no files selected for viewing
This file was deleted.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,15 @@ | ||
WORK_DIR:=$(strip $(shell dirname $(realpath $(lastword $(MAKEFILE_LIST))))) | ||
PROTO_HOME=/usr/local/opt/include | ||
SRC_DIR=$(WORK_DIR) | ||
TARGET_DIR=$(WORK_DIR)/../gen | ||
SRC_DIR=$(realpath $(WORK_DIR)/../../../../..) | ||
|
||
PROTOS := common_proto.proto DependencyTestProto.proto exampleProtoCriteo.proto $\ | ||
metadata_proto.proto NestedTestProto.proto PublicTestProto.proto $\ | ||
SInt32Value.proto SInt64Value.proto TestProto.proto | ||
|
||
compile: $(PROTOS) | ||
for proto in $(PROTOS); do \ | ||
protoc -I=$(PROTO_HOME) -I=$(SRC_DIR) --python_out=$(TARGET_DIR) $$proto ; \ | ||
(cd $(SRC_DIR) && protoc -I=$(PROTO_HOME) -I=$(SRC_DIR) --python_out=$(SRC_DIR) tests/integration/schema_registry/data/proto/$$proto ;) \ | ||
done | ||
|
||
clean: | ||
rm -f $(TARGET_DIR)/*_pb2.py | ||
rm -f *_pb2.py |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
syntax = "proto3"; | ||
|
||
import public "tests/integration/schema_registry/data/proto/TestProto.proto"; | ||
|
||
package tests.integration.serialization.data; | ||
|
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.