Skip to content

Commit

Permalink
Adding build task and echo message to prevent root build failure
Browse files Browse the repository at this point in the history
  • Loading branch information
Freydal committed Feb 28, 2020
1 parent d418622 commit a527a58
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 4 deletions.
7 changes: 5 additions & 2 deletions services/hedger/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,10 @@ DOCKER_IMAGE=hedger
DOCKER_CONTEXT=../..

include ../../rules/docker.mk
include ../../rules/rules.mk
include ../../rules/rules.mk

build:
echo "No build in hedger"

ci:
echo "skipping non-go tests"
Expand All @@ -12,4 +15,4 @@ lint:

gen:
python -m grpc_tools.protoc -I../../proto --python_out=./hedger --grpc_python_out=./hedger ../../proto/services.proto
python -m grpc_tools.protoc -I../../proto --python_out=./hedger --grpc_python_out=./hedger ../../proto/types.proto
python -m grpc_tools.protoc -I../../proto --python_out=./hedger --grpc_python_out=./hedger ../../proto/types.proto
7 changes: 5 additions & 2 deletions services/maker/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,15 @@ DOCKER_CONTEXT=../..
include ../../rules/docker.mk
include ../../rules/rules.mk

ci:
build:
echo "No build in maker"

ci:
echo "skipping non-go tests"

lint:
echo "not linting for now (FIXME)"

gen:
python -m grpc_tools.protoc -I../../proto --python_out=./maker --grpc_python_out=./maker ../../proto/services.proto
python -m grpc_tools.protoc -I../../proto --python_out=./maker --grpc_python_out=./maker ../../proto/types.proto
python -m grpc_tools.protoc -I../../proto --python_out=./maker --grpc_python_out=./maker ../../proto/types.proto

0 comments on commit a527a58

Please sign in to comment.