Skip to content
Snippets Groups Projects
Commit e917b3d3 authored by Will Chandler's avatar Will Chandler
Browse files

Makefile: Install protogem dependencies

The `build-proto-gem` target has its own Gemfile to require the
`grpc-tools` gem, but does not run `bundle install` in `tools/protogem`
directory first.

Update the Makefile to install protogem's dependency before building.

Changelog: fixed
parent dea4906c
Branches wc/make-protogem-install
Tags
No related merge requests found
......@@ -494,6 +494,7 @@ lint-proto: ${PROTOC} ${PROTOLINT} ${PROTOC_GEN_GITALY_LINT}
.PHONY: build-proto-gem
## Build the Ruby Gem that contains Gitaly's Protobuf definitons.
build-proto-gem:
${Q}cd "${SOURCE_DIR}"/tools/protogem && bundle install
${Q}"${SOURCE_DIR}"/tools/protogem/build-proto-gem -o "${BUILD_DIR}/gitaly.gem" ${BUILD_GEM_OPTIONS}
.PHONY: publish-proto-gem
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment