Skip to content

Commit

Permalink
fix: tweak
Browse files Browse the repository at this point in the history
Signed-off-by: hlts2 <[email protected]>
  • Loading branch information
hlts2 committed May 7, 2024
1 parent dff080e commit 070f96c
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 4 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/e2e.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,9 @@ jobs:
echo "Install dependencies"
make ci/deps/install
NPM_BIN=$(npm prefix)
ls ${NPM_BIN}/node_modules/@bufbuild/buf/bin/buf
echo "Build proto"
export GOPATH=$HOME/go
export PATH=$HOME/grpc-java:$PATH
Expand Down
9 changes: 5 additions & 4 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -270,8 +270,8 @@ ci/deps/install:
ci/deps/update:
@echo "Nothing do be done"

.PHONY: npm/deps
npm/deps: \
.PHONY: npm/deps/install
npm/deps/install: \
$(BUF_GEN_PATH)

$(BUF_GEN_PATH):
Expand All @@ -280,14 +280,15 @@ $(BUF_GEN_PATH):
.PHONY: proto/deps
## install proto deps
proto/deps: \
npm/deps
npm/deps/install

$(TEST_DATASET_PATH):
curl -L https://raw.githubusercontent.com/rinx/word2vecjson/master/data/wordvecs1000.json -o $(TEST_DATASET_PATH)

.PHONY: ci/package/prepare
## prepare for publich
ci/package/prepare: ci/deps/install
ci/package/prepare: \
ci/deps/install

.PHONY: ci/package/publish
## publich packages
Expand Down

0 comments on commit 070f96c

Please sign in to comment.